feat(web正文图片):图片添加width参数(默认640)

This commit is contained in:
Xwite 2022-03-04 12:25:41 +08:00
parent 43d88f8c33
commit cc6e5f771f

View File

@ -79,6 +79,7 @@ object BookController {
?: return returnData.setErrorMsg("bookUrl为空")
val src = parameters["path"]?.firstOrNull()
?: return returnData.setErrorMsg("图片链接为空")
val width = parameters["width"]?.firstOrNull()?.toInt() ?: 640
if (this.bookUrl != bookUrl) {
this.book = appDb.bookDao.getBook(bookUrl)
?: return returnData.setErrorMsg("bookUrl不对")
@ -94,7 +95,7 @@ object BookController {
}
this.bookUrl = bookUrl
return returnData.setData(
BitmapUtils.decodeBitmap(vFile.absolutePath, 640, 640)
BitmapUtils.decodeBitmap(vFile.absolutePath, width, width)
)
}