Thomas Zastrow wrote:

But this command directly builds a PDF-file, no FO-file is produced. Is it possible to get also a FO-file from the commandline in one step?

In addition to doing it the way Andreas showed using FOP, you can use a separate XSLT processor of your choice to get an FO file, and then give that to FOP. If you use a fast XSLT processor like xsltproc (written in C, not Java like FOP) it might be faster to do this two-step conversion than to go straight from XML to PDF.

Example:

        xsltproc some-stylesheet.xsl my-document.xml > my-document.fo
        fop -fo my-document.fo my-document.pdf

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

Reply via email to