Re: FO + External bitmap graphics -> FOP -> SVG

2005-05-09 Thread Jeremias Maerki
I'm glad you found a good solution. You're idea might prove useful to the redesign since we already have someone who is working to bring the AWT/Java2D-Renderer up to date. We can handle the SVG part like that. For SVG I don't think there would be a quality degradation. The SVGRenderer is not very

Re: FO + External bitmap graphics -> FOP -> SVG

2005-05-08 Thread Daniel Noll
Jeremias Maerki wrote: Don't be shy! This is actually quite easy. It just took the following lines to hack that missing feature in. Just place the code snippet below in SVGRenderer in the method renderImageArea() right after the commented call to graphics.drawImage(). You're right, that seems to

Re: FO + External bitmap graphics -> FOP -> SVG

2005-05-05 Thread Jeremias Maerki
Don't be shy! This is actually quite easy. It just took the following lines to hack that missing feature in. Just place the code snippet below in SVGRenderer in the method renderImageArea() right after the commented call to graphics.drawImage(). Element imageElement = svgDocume

Re: FO + External bitmap graphics -> FOP -> SVG

2005-05-03 Thread Daniel Noll
Jeremias Maerki wrote: You're not doing anything wrong. As far as I can tell images are not implemented in the SVG renderer. You'd have to finish that part yourself. See: http://cvs.apache.org/viewcvs.cgi/xml-fop/src/org/apache/fop/render/svg/SVGRenderer.java?hideattic=0&rev=1.3.2.9&only_with_tag=f

Re: FO + External bitmap graphics -> FOP -> SVG

2005-05-03 Thread Jeremias Maerki
You're not doing anything wrong. As far as I can tell images are not implemented in the SVG renderer. You'd have to finish that part yourself. See: http://cvs.apache.org/viewcvs.cgi/xml-fop/src/org/apache/fop/render/svg/SVGRenderer.java?hideattic=0&rev=1.3.2.9&only_with_tag=fop-0_20_2-maintain&view

FO + External bitmap graphics -> FOP -> SVG

2005-05-03 Thread Daniel Noll
I have the following FO code (reduced to fit well in the email): ... When I use FOP to convert this to a PDF, it works perfectly. But when I use the same files and convert it to an SVG, the image is missing. On ins