/* * Copyright 1999-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* $Id$ */ package embedding; //Java import java.io.File; import java.io.IOException; import java.io.OutputStream; //JAXP import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.DocumentBuilder; // DOM import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.Text; // Avalon import org.apache.avalon.framework.ExceptionUtil; import org.apache.avalon.framework.logger.ConsoleLogger; import org.apache.avalon.framework.logger.Logger; //FOP import org.apache.fop.apps.Driver; import org.apache.fop.apps.FOPException; /** * This class demonstrates the conversion of a DOM Document to PDF * using JAXP (XSLT) and FOP (XSL-FO). */ public class ExampleDOM2PDF { /** xsl-fo namespace URI */ protected static String foNS = "http://www.w3.org/1999/XSL/Format"; /** * Converts a DOM Document to a PDF file using FOP. * @param xslfoDoc the DOM Document * @param pdf the target PDF file * @throws IOException In case of an I/O problem * @throws FOPException In case of a FOP problem */ public void convertDOM2PDF(Document xslfoDoc, File pdf) throws IOException, FOPException { //Construct driver Driver driver = new Driver(); //Setup logger Logger logger = new ConsoleLogger(ConsoleLogger.LEVEL_INFO); driver.enableLogging(logger); driver.initialize(); //Setup Renderer (output format) driver.setRenderer(Driver.RENDER_PDF); //Setup output OutputStream out = new java.io.FileOutputStream(pdf); out = new java.io.BufferedOutputStream(out); try { driver.setOutputStream(out); driver.render(xslfoDoc); } finally { out.close(); } } /** * Main method. * @param args command-line arguments */ public static void main(String[] args) { try { System.out.println("FOP ExampleDOM2PDF\n"); //Setup directories File baseDir = new File("."); File outDir = new File(baseDir, "out"); outDir.mkdirs(); //Setup output file File pdffile = new File(outDir, "ResultDOM2PDF.pdf"); System.out.println("PDF Output File: " + pdffile); System.out.println(); // Create a sample XSL-FO DOM document Document foDoc = null; Element root = null, ele1 = null, ele2 = null, ele3 = null; Text elementText = null; DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); dbf.setNamespaceAware(true); DocumentBuilder db = dbf.newDocumentBuilder(); foDoc = db.newDocument(); root = foDoc.createElementNS(foNS, "fo:root"); foDoc.appendChild(root); ele1 = foDoc.createElementNS(foNS, "fo:layout-master-set"); root.appendChild(ele1); ele2 = foDoc.createElementNS(foNS, "fo:simple-page-master"); ele1.appendChild(ele2); ele2.setAttributeNS(null, "master-name", "letter"); ele2.setAttributeNS(null, "page-height", "11in"); ele2.setAttributeNS(null, "page-width", "8.5in"); ele2.setAttributeNS(null, "margin-top", "1in"); ele2.setAttributeNS(null, "margin-bottom", "1in"); ele2.setAttributeNS(null, "margin-left", "1in"); ele2.setAttributeNS(null, "margin-right", "1in"); ele3 = foDoc.createElementNS(foNS, "fo:region-body"); ele2.appendChild(ele3); ele1 = foDoc.createElementNS(foNS, "fo:page-sequence"); root.appendChild(ele1); ele1.setAttributeNS(null, "master-reference", "letter"); ele2 = foDoc.createElementNS(foNS, "fo:flow"); ele1.appendChild(ele2); ele2.setAttributeNS(null, "flow-name", "xsl-region-body"); addElement(ele2, "fo:block", "Hello World!"); ExampleDOM2PDF app = new ExampleDOM2PDF(); app.convertDOM2PDF(foDoc, pdffile); System.out.println("Success!"); } catch (Exception e) { System.err.println(ExceptionUtil.printStackTrace(e)); System.exit(-1); } } /** * Adds an element to the DOM. * @param parent parent node to attach the new element to * @param newNodeName name of the new node * @param textVal content of the element */ protected static void addElement(Node parent, String newNodeName, String textVal) { if (textVal == null) { return; } // use only with text nodes Element newElement = parent.getOwnerDocument().createElementNS( foNS, newNodeName); Text elementText = parent.getOwnerDocument().createTextNode(textVal); newElement.appendChild(elementText); parent.appendChild(newElement); } }