diff options
Diffstat (limited to 'core/fpdftext')
-rw-r--r-- | core/fpdftext/cpdf_textpage.cpp | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/core/fpdftext/cpdf_textpage.cpp b/core/fpdftext/cpdf_textpage.cpp index 5465297263..8c110b6814 100644 --- a/core/fpdftext/cpdf_textpage.cpp +++ b/core/fpdftext/cpdf_textpage.cpp @@ -510,15 +510,36 @@ WideString CPDF_TextPage::GetPageText(int start, int count) const { return L""; } + const int count_chars = CountChars(); int text_start = TextIndexFromCharIndex(start); - if (text_start < 0) - return L""; - count = std::min(count, CountChars() - start); + // If the character at |start| is a non-printing character, then + // TextIndexFromCharIndex will return -1, so scan ahead to the first printing + // character. + while (text_start < 0) { + if (start >= count_chars) + return L""; + start++; + text_start = TextIndexFromCharIndex(start); + } + + count = std::min(count, count_chars - start); int last = start + count - 1; int text_last = TextIndexFromCharIndex(last); - if (text_last < 0 || text_last < text_start) + + // If the character at |last| is a non-printing character, then + // TextIndexFromCharIndex will return -1, so scan back to the last printing + // character. + while (text_last < 0) { + if (last < text_start) + return L""; + + last--; + text_last = TextIndexFromCharIndex(last); + } + + if (text_last < text_start) return L""; int text_count = text_last - text_start + 1; |