Summary: |
Spurious whitespace added after an "ActualText" segment |
Product: |
poppler
|
Reporter: |
Michaël Meyer <michaelnm.meyer> |
Component: |
general | Assignee: |
poppler-bugs <poppler-bugs> |
Status: |
RESOLVED
MOVED
|
QA Contact: |
|
Severity: |
normal
|
|
|
Priority: |
medium
|
|
|
Version: |
unspecified | |
|
Hardware: |
All | |
|
OS: |
Linux (All) | |
|
Whiteboard: |
|
i915 platform:
|
|
i915 features:
|
|
Attachments: |
Sample PDF
|
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.
Created attachment 139219 [details] Sample PDF The attached PDF file contains two times the same string "aṭa", in a regular font and in an italic font, respectively. In both cases, the dot below "t" is rendered with an IPA font, and the resulting character is overlayed with the corresponding code point (U+1E6D) as "ActualText". Now, extracting the PDF text with "pdftotext" (or copy-pasting the text from a PDF viewer that uses Poppler) results in the string "aṭa aṭ a" instead of the expected "aṭa aṭa". Both Acrobat Reader and Google Chrome's builtin PDF viewer correctly produce the string "aṭa aṭa". Looking at Poppler's code, it looks like the culprit is the following check in "poppler/TextOutputDev.cc": if (overlap || lastCharOverlap || sp < -minDupBreakOverlap * curWord->fontSize || sp > minWordBreakSpace * curWord->fontSize || // PROBLEM HERE fabs(base - curWord->base) > 0.5 || curFontSize != curWord->fontSize || wMode != curWord->wMode ) { endWord(); } Slightly increasing the value of "minWordBreakSpace" produces the expected result. This makes me think that "curWord->fontSize" is not computed properly for the italic font. The attached PDF file was produced with the following latex code (to be compiled with lualatex): \documentclass[12pt]{article} \usepackage{newunicodechar} \usepackage[luatex]{accsupp} \usepackage{tipa} \newunicodechar{ṭ}{% \BeginAccSupp{% method=hex,% unicode=true,% ActualText=1e6d,% }% \textsubdot{t}% \EndAccSupp{}% } \begin{document} \thispagestyle{empty} aṭa \textit{aṭa} \end{document}