Package com.itextpdf.xmp.options

Examples of com.itextpdf.xmp.options.ParseOptions


   */
  public void normalize(ParseOptions options) throws XMPException
  {
    if (options == null)
    {
      options = new ParseOptions();
    }
    XMPNormalizer.process(this, options);   
  }
View Full Code Here


   * @throws XMPException Thrown if parsing or normalisation fails.
   */
  public static XMPMeta parse(Object input, ParseOptions options) throws XMPException
  {
    ParameterAsserts.assertNotNull(input);
    options = options != null ? options : new ParseOptions();

    Document document = parseXml(input, options);

    boolean xmpmetaRequired = options.getRequireXMPMeta();
    Object[] result = new Object[3];
View Full Code Here

TOP

Related Classes of com.itextpdf.xmp.options.ParseOptions

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.