Package com.itextpdf.text.xml.xmp

Examples of com.itextpdf.text.xml.xmp.XmpWriter


              }
            }
            else {
                    ByteArrayOutputStream baos = new ByteArrayOutputStream();
                    try {
                        XmpWriter xmpw = new XmpWriter(baos, newInfo, getPDFXConformance());
                        xmpw.close();
                    }
                    catch (IOException ioe) {
                        ioe.printStackTrace();
                    }
              xmpr = new XmpReader(baos.toByteArray());
View Full Code Here


      // Set the metadata the old skool way
      stamp.setMoreInfo(moreInfo);
     
      // Set the metadata the new improved RDF way
      ByteArrayOutputStream baos = new ByteArrayOutputStream();
      XmpWriter xmp = new XmpWriter(baos, moreInfo);
      xmp.close();
      stamp.setXmpMetadata(baos.toByteArray());
     
      // Close the stamp
      stamp.close();
     
View Full Code Here

              }
            }
            else {
                    ByteArrayOutputStream baos = new ByteArrayOutputStream();
                    try {
                        XmpWriter xmpw = new XmpWriter(baos, newInfo, getPDFXConformance());
                        xmpw.close();
                    }
                    catch (IOException ioe) {
                        ioe.printStackTrace();
                    }
              xmpr = new XmpReader(baos.toByteArray());
View Full Code Here

     * @return an XmpMetadata byte array
     */
    private byte[] createXmpMetadataBytes() {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        try {
            XmpWriter xmp = new XmpWriter(baos, pdf.getInfo(), pdfxConformance.getPDFXConformance());
            xmp.close();
        }
        catch (IOException ioe) {
            ioe.printStackTrace();
        }
        return baos.toByteArray();
View Full Code Here

TOP

Related Classes of com.itextpdf.text.xml.xmp.XmpWriter

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.