This commit is contained in:
kunfei
2022-02-17 11:32:45 +08:00
parent 65ecd69ad3
commit 33b7800215

View File

@@ -164,7 +164,7 @@ object ChapterProvider {
}
durY = setTypeImage(
book, bookChapter, matcher.group(1)!!,
durY, textPages, book.getImageStyle()
absStartX, durY, textPages, book.getImageStyle()
)
start = matcher.end()
}
@@ -204,6 +204,7 @@ object ChapterProvider {
book: Book,
chapter: BookChapter,
src: String,
absStartX: Int,
y: Float,
textPages: ArrayList<TextPage>,
imageStyle: String?,
@@ -254,8 +255,8 @@ object ChapterProvider {
textLine.textChars.add(
TextChar(
charData = src,
start = start,
end = end,
start = absStartX + start,
end = absStartX + end,
isImage = true
)
)