Package org.apache.fop.pdf

Examples of org.apache.fop.pdf.PDFReference


            nameArray = new PDFArray();
            embeddedFiles.setNames(nameArray);
        }
        String name = PDFText.toPDFString(filename);
        nameArray.add(name);
        nameArray.add(new PDFReference(fileSpec));
    }
View Full Code Here


                    .getProperty(PDFRendererContextConstants.PDF_CONTEXT);

                // Try to get a already added image with the same key
                PDFXObject xObj = pdfi.pdfDoc.getXObject(uri);

                PDFReference xFormResRef = null;
                if (xObj != null) {
                    // e.g. Form XObject's resources aren't used for svg images
                    // (svg images are drawn directly to the stream)
                    PDFResources xFormRes = pdfi.factory.makeResources();
                    xFormRes.addXObject(xObj);
View Full Code Here

TOP

Related Classes of org.apache.fop.pdf.PDFReference

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.