mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
feat(web正文图片):图片添加width参数(默认640)
This commit is contained in:
@@ -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)
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user