https://issues.apache.org/bugzilla/show_bug.cgi?id=49736

--- Comment #3 from Christoffer Bruun <[email protected]> 2011-04-28 
06:53:37 EDT ---
I have encountered this/similar problem while using FOP 1.0 to render a PDF
that included some svg figures included by fo:externalGraphic.

The PNG image rendered by PNGTranscoder on the same SVG input looks correct.

In my case it was not sufficient to remove whitespace between <tspan> ...
</tspan>
I also had to remove all white space between <text> and <tspan>

e.g.

<text style="text-anchor: middle">
   <tspan>..</tspan>
   <tspan>..</tspan>
</text> 

must be turned into

<text style="text-anchor: middle"><tspan>..</tspan><tspan>..</tspan></text> 

in order to work

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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to