Package org.apache.padaf.preflight.utils

Examples of org.apache.padaf.preflight.utils.PdfElementParser


      COSDictionary last = null;
      COSDocument cd = null;
      try {
        cd = new COSDocument();

        PdfElementParser parser1 = new PdfElementParser(cd, firstTrailer.getBytes());
        first = parser1.parseAsDictionary();

        PdfElementParser parser2 = new PdfElementParser(cd, lastTrailer.getBytes());
        last = parser2.parseAsDictionary();

        checkMainTrailer(pdfDoc.getDocument(), first, result);
        if (!compareIds(first, last, pdfDoc.getDocument())) {
          result.add(new ValidationResult.ValidationError(
              ValidationConstants.ERROR_SYNTAX_TRAILER_ID_CONSISTENCY,
View Full Code Here

TOP

Related Classes of org.apache.padaf.preflight.utils.PdfElementParser

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.