To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100522
User hdu changed the following:
What |Old value |New value
================================================================================
CC|'rainerbielefeld' |'hdu,rainerbielefeld'
--------------------------------------------------------------------------------
Assigned to|hdu |pl
--------------------------------------------------------------------------------
------- Additional comments from [email protected] Wed Mar 25 14:08:39 +0000
2009 -------
@pl: the problem has a similar root cause to issue 87686. This problem in this
issue is in your method PDFWriterImpl::drawHorizontalGlyphs() where multiple
glyphs get merge to reduce the PDF file size.
Until this gets properly fixed disabling the buggy merging is a reasonable
workaround:
--- source/gdi/pdfwriter_impl.cxx (revision 269829)
+++ source/gdi/pdfwriter_impl.cxx (HDU's working copy)
@@ -6623,7 +6623,9 @@ PDFWriterImpl::drawHorizontalGlyphs(
for( size_t i = 1; i < rGlyphs.size(); i++ )
{
+#if 0
if( rGlyphs[i].m_nMappedFontId != rGlyphs[i-1].m_nMappedFontId ||
rGlyphs[i].m_aPos.Y() != rGlyphs[i-1].m_aPos.Y() )
+#endif
{
aRunEnds.push_back(i);
}
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]