PDFreactor:
3.0.3311 (2008-07-07)
edit-on Pro:
5.2.221 (2008-06-23)
edit-on JavaBean SDK:
5.1.290 (2007-11-07)
TYPO3 Extension:
2.0.2 (2007-06-14)
2.3 What is simplest way to integrate PDFreactor using the Java API?
PDFreactor can be integrated with just these few lines of Java code:
InputSource inputSource = ...; //e.g. new InputSource("http://www.realobjects.com/");
OutputStream outputStream = ...; //e.g. new FileOutputStream("realobjects.pdf");
PDFreactor pdfReactor = new PDFreactor();
pdfReactor.renderDocument(inputSource, new PDFreactorConfiguration(), outputStream);
See also the chapter Introducing the Java lib in the PDFreactor Manual.