https://issues.apache.org/ooo/show_bug.cgi?id=63015

--- Comment #36 from [email protected] ---
I found the solution to this. 
In vcl\source\gdi\pdfwriter_impl.cxx at the function emitEmbeddedFont at the
Line 3696:
if( !pFont->IsSymbolFont() && pEncoding == 0)
must be changed to:
if( !pFont->IsSymbolFont() )

Reason: Without the pEncoding check - "/Encoding/WinAnsiEncoding\n" is added to
the pdf file which is correct. pEncoding specifies that a ToUnicode stream has
to be generated (and it is) and nothing speaks against it because it is only a
translation table and doesn't affect the encoding itself. For symbolic fonts
WinAnsiEncoding would be wrong because they have there own encoding shipped
with.

I don't want to create a patch and upload this myself because I don't intend to
do more bugfixing on openoffice and it is to tiny to go through the whole
upload process. So please someone else do this, I don't want any rights on that
code submission.

-- 
You are receiving this mail because:
You are on the CC list for the issue.
You are watching all issue changes.

Reply via email to