This commit is contained in:
kunfei 2022-03-02 17:53:08 +08:00
parent a93c285db2
commit 86171c3e7f
3 changed files with 16 additions and 0 deletions

View File

@ -270,4 +270,18 @@ object BookController {
return returnData.setData(data)
}
/**
* 获取图片
*/
fun getImage(parameters: Map<String, List<String>>): ReturnData {
val returnData = ReturnData()
val coverPath = parameters["path"]?.firstOrNull()
val ftBitmap = ImageLoader.loadBitmap(appCtx, coverPath).submit()
return try {
returnData.setData(ftBitmap.get())
} catch (e: Exception) {
returnData.setData(BookCover.defaultDrawable.toBitmap())
}
}
}

View File

@ -64,6 +64,7 @@ class HttpServer(port: Int) : NanoHTTPD(port) {
"/getReadConfig" -> BookController.getWebReadConfig()
"/getRssSource" -> RssSourceController.getSource(parameters)
"/getRssSources" -> RssSourceController.sources
"/getImage" -> BookController.getImage(parameters)
else -> null
}
}

View File

@ -38,6 +38,7 @@ class AssetsWeb(rootPath: String) {
suffix.equals(".js", ignoreCase = true) -> "text/javascript"
suffix.equals(".css", ignoreCase = true) -> "text/css"
suffix.equals(".ico", ignoreCase = true) -> "image/x-icon"
suffix.equals(".jpg", ignoreCase = true) -> "image/jpg"
else -> "text/html"
}
}