Re: region boundaries

2002-02-27 Thread Alexandre Denes dos Santos
- Original Message - From: Arved Sandstrom [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 12:27 PM Subject: RE: region boundaries Comments below. -Original Message- From: Alexandre Denes dos Santos [mailto:[EMAIL PROTECTED] Sent: February 27, 2002 11:02 AM

Re: calling fop from java

2002-02-28 Thread Alexandre Denes dos Santos
Use: Driver driver = new Driver(InputStream in, OutputStream out); driver.setRenderer(Driver.RENDER_PDF); driver.run(); where in is the inputStream to the fo file that you will render and out is the outputstream where the pdf content will be write to. The package is org.apache.fop.apps. Hope