Package org.pdfclown.tokens

Examples of org.pdfclown.tokens.Parser


          case Free:
            break;
          // In-use entry (late-bound data object).
          case InUse:
          {
            Parser parser = file.getReader().getParser();
            // Retrieve the associated data object among the original objects!
            parser.seek(xrefEntry.getOffset());
            // Get the indirect data object!
            dataObject = parser.parsePdfObject(4); // NOTE: Skips the indirect-object header.
            break;
          }
          case InUseCompressed:
          {
            // Get the object stream where its data object is stored!
View Full Code Here

TOP

Related Classes of org.pdfclown.tokens.Parser

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.