PDF pagination
acarrascal <[email protected]> Thu, 14 Feb 2013 22:07:39 -0800 (PST)
| Newsgroups | gmane.text.xml.batik.user |
|---|---|
| Message-ID | <[email protected]> |
Hi all,
I'm trying to export pdf reports by converting original SVG documents. This
is the code I'm using to do it:
public static void renderReport(Document document, File file) throws
IOException, TranscoderException,
TransformerException {
OutputStream outputStream = new FileOutputStream(file);
try {
TransformerFactory transformerFactory =
TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount",
"4");
DOMSource domSource = new DOMSource(document);
StreamResult streamResult = new StreamResult(System.out);
transformer.transform(domSource, streamResult);
TranscoderInput transcoderInput = new TranscoderInput(document);
TranscoderOutput transcoderOutput = new
TranscoderOutput(outputStream);
Transcoder transcoder = new PDFTranscoder();
transcoder.transcode(transcoderInput, transcoderOutput);
outputStream.flush();
} finally {
outputStream.close();
}
}
The question is: is there any supported batik feature to paginate final pdf
reports? any idea?
Thanks
--
View this message in context: http://batik.2283329.n4.nabble.com/PDF-pagination-tp4655467.html
Sent from the Batik - Users mailing list archive at Nabble.com.