DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42123>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42123

           Summary: Regression: Batik 1.7 -> FOP converts 'sans-serif' to
                    'SansSerif'
           Product: Batik
           Version: 1.7
          Platform: Other
        OS/Version: other
            Status: NEW
          Severity: regression
          Priority: P2
         Component: SVG Rasterizer
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


There appears to be a regression between Batik 1.6 and 1.7 Beta 1 with regard to
Apache FOP 0.93. As I am neither an expert at Batik nor FOP, I will struggle to
define the issue, but here goes:

Apache FOP delegates to Batik whenever it encounters some embedded SVG. If the
embedded SVG contains 'font-family='sans-serif', FOP will pass that to Batik,
and Batik will (for good reasons I'm sure) convert that to 'SansSerif'.

It then seems (I could be wrong) that if the SVG contains embedded text, Batik
will pass that BACK to FOP to render. When it does this, however, it passes back
'SansSerif' instead of 'sans-serif', which FOP cannot resolve and substitutes
'any,normal,400' instead. Generally, 'any' does not equal 'sans-serif'.

You can work around this behaviour by doing...

Fop fop = FOP_FACTORY.newFop( getMimeType(), p_out );
FOTreeBuilder contentHandler = (FOTreeBuilder) fop.getDefaultHandler();
FontInfo info = contentHandler.getEventHandler().getFontInfo();
info.addFontProperties( "F1", FontInfo.createFontKey( "SansSerif", "normal", 400
) );

...(eg. tell FOP what 'SansSerif' means) - but that doesn't seem ideal.

Batik 1.6 didn't seem to have this problem?

I am using JFreeChart 1.0.5 to generate the SVG (via Batik 1.7), and FOP 0.93 to
render the PDF (also via Batik 1.7)

Regards,

Richard.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to