Package com.itextpdf.xmp

Examples of com.itextpdf.xmp.XMPMeta


        }
        if (xmp == null && altMetadata != null) {
          try {
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                if (moreInfo == null || xmpMetadata != null) {
                    XMPMeta xmpMeta = XMPMetaFactory.parseFromBuffer(altMetadata);

                    PdfProperties.setProducer(xmpMeta, producer);
                    XmpBasicProperties.setModDate(xmpMeta, date.getW3CDate());
                    XmpBasicProperties.setMetaDataDate(xmpMeta, date.getW3CDate());
View Full Code Here


        return COUNTER;
    }

    private void readPdfAInfo() {
        byte[] metadata = null;
        XMPMeta xmpMeta = null;
        XMPProperty pdfaidConformance = null;
        XMPProperty pdfaidPart = null;
        try {
            metadata = reader.getMetadata();
            xmpMeta = XMPMetaParser.parse(metadata, null);
            pdfaidConformance = xmpMeta.getProperty(XMPConst.NS_PDFA_ID, "pdfaid:conformance");
            pdfaidPart = xmpMeta.getProperty(XMPConst.NS_PDFA_ID, "pdfaid:part");
        } catch (Throwable e) {
            throw new PdfAConformanceException(MessageLocalization.getComposedMessage("only.pdfa.documents.can.be.opened.in.PdfAStamper"));
        }
        if (pdfaidConformance == null || pdfaidPart == null) {
            throw new PdfAConformanceException(MessageLocalization.getComposedMessage("only.pdfa.documents.can.be.opened.in.PdfAStamper"));
View Full Code Here

    @Override
    public void close(PdfWriter writer) {
        super.close(writer);
        boolean ok = false;
        XMPMeta xmpMeta = writer.getXmpWriter().getXmpMeta();
        try {
            String docFileName = xmpMeta.getPropertyString(PdfAXmpWriter.zugferdSchemaNS, PdfAXmpWriter.zugferdDocumentFileName);
            for (PdfFileSpecification attachment : attachments) {
                if (docFileName.equals(attachment.getAsString(PdfName.UF).toString())) {
                    PdfName relationship = attachment.getAsName(PdfName.AFRELATIONSHIP);
                    if (!AFRelationshipValue.Alternative.equals(relationship)) {
                        attachments.clear();
View Full Code Here

TOP

Related Classes of com.itextpdf.xmp.XMPMeta

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.