HomeSort by relevance Sort by last modified time
    Searched defs:xmp (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPException.java 10 package com.adobe.xmp;
13 * This exception wraps all errors that occur in the XMP Toolkit.
19 /** the errorCode of the XMP toolkit */
XMPIterator.java 10 package com.adobe.xmp;
18 * schema and properties within an XMP object.
20 * The iteration over the schema and properties within an XMP object is very
21 * complex. It is helpful to have a thorough understanding of the XMP data tree.
22 * One way to learn this is to create some complex XMP and examine the output of
23 * <code>XMPMeta#toString</code>. This is also described in the XMP
24 * Specification, in the XMP Data Model chapter.
26 * The top of the XMP data tree is a single root node. This does not explicitly
56 * The default is to return the full xmp path.
XMPVersionInfo.java 10 package com.adobe.xmp;
13 * XMP Toolkit Version Information.
15 * Version information for the XMP toolkit is stored in the jar-library and available through a
XMPPathFactory.java 10 package com.adobe.xmp;
12 import com.adobe.xmp.impl.Utils;
13 import com.adobe.xmp.impl.xpath.XMPPath;
14 import com.adobe.xmp.impl.xpath.XMPPathParser;
18 * an object. These are all functions that layer cleanly on top of the core XMP toolkit.
54 * This is because the XMP toolkit keeps the top level &quot;schema&quot; namespace separate from
75 * @param itemIndex The index of the desired item. Arrays in XMP are indexed from 1.
XMPSchemaRegistry.java 10 package com.adobe.xmp;
14 import com.adobe.xmp.properties.XMPAliasInfo;
17 * The schema registry keeps track of all namespaces and aliases used in the XMP
20 * used in namespace URI parameters or path expressions. Within the XMP Toolkit
27 * <b>Aliases</b> in XMP serve the same purpose as Windows file shortcuts,
29 * multiple names for the same property. One distinction of XMP aliases is that
34 * The names that can be aliased in XMP are restricted. The alias must be a top
XMPDateTimeFactory.java 10 package com.adobe.xmp;
17 import com.adobe.xmp.impl.XMPDateTimeImpl;
XMPError.java 10 package com.adobe.xmp;
XMPDateTime.java 10 package com.adobe.xmp;
18 * seconds. Dates and time in the serialized XMP are ISO 8601 strings. There are utility functions
XMPMetaFactory.java 10 package com.adobe.xmp;
15 import com.adobe.xmp.impl.XMPMetaImpl;
16 import com.adobe.xmp.impl.XMPMetaParser;
17 import com.adobe.xmp.impl.XMPSchemaRegistryImpl;
18 import com.adobe.xmp.impl.XMPSerializerHelper;
19 import com.adobe.xmp.options.ParseOptions;
20 import com.adobe.xmp.options.SerializeOptions;
77 * These functions support parsing serialized RDF into an XMP object, and serailizing an XMP
108 * @param packet a String contain an XMP-file
    [all...]
XMPUtils.java 10 package com.adobe.xmp;
12 import com.adobe.xmp.impl.Base64;
13 import com.adobe.xmp.impl.ISO8601Converter;
14 import com.adobe.xmp.impl.XMPUtilsImpl;
15 import com.adobe.xmp.options.PropertyOptions;
19 * Utility methods for XMP. I included only those that are different from the
36 * @param xmp
37 * The XMP object containing the array to be catenated.
57 public static String catenateArrayItems(XMPMeta xmp, String schemaNS, String arrayName,
61 .catenateArrayItems(xmp, schemaNS, arrayName, separator, quotes, allowCommas)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerHelper.java 10 package com.adobe.xmp.impl;
16 import com.adobe.xmp.XMPException;
17 import com.adobe.xmp.options.SerializeOptions;
33 * @param xmp a metadata implementation object
38 public static void serialize(XMPMetaImpl xmp, OutputStream out,
47 xmp.sort();
49 new XMPSerializerRDF().serialize(xmp, out, options);
58 * @param xmp a metadata implementation object
64 public static String serializeToString(XMPMetaImpl xmp, SerializeOptions options)
72 serialize(xmp, out, options)
    [all...]
XMPMetaParser.java 10 package com.adobe.xmp.impl;
31 import com.adobe.xmp.XMPConst;
32 import com.adobe.xmp.XMPError;
33 import com.adobe.xmp.XMPException;
34 import com.adobe.xmp.XMPMeta;
35 import com.adobe.xmp.options.ParseOptions;
63 * Parses the input source into an XMP metadata object, including
67 * a byte buffer containing the XMP packet.
69 * @return Returns the resulting XMP metadata object
85 XMPMetaImpl xmp = ParseRDF.parse((Node) result[0]) local
    [all...]
CountOutputStream.java 10 package com.adobe.xmp.impl;
ParameterAsserts.java 10 package com.adobe.xmp.impl;
12 import com.adobe.xmp.XMPConst;
13 import com.adobe.xmp.XMPError;
14 import com.adobe.xmp.XMPException;
15 import com.adobe.xmp.XMPMeta;
135 * Asserts that the xmp object is of this implemention
137 * @param xmp the XMP object
140 public static void assertImplementation(XMPMeta xmp) throws XMPException
142 if (xmp == null
    [all...]
QName.java 10 package com.adobe.xmp.impl;
Base64.java 10 package com.adobe.xmp.impl;
ByteBuffer.java 12 package com.adobe.xmp.impl;
Latin1Converter.java 12 package com.adobe.xmp.impl;
XMPNormalizer.java 10 package com.adobe.xmp.impl;
17 import com.adobe.xmp.XMPConst;
18 import com.adobe.xmp.XMPDateTime;
19 import com.adobe.xmp.XMPError;
20 import com.adobe.xmp.XMPException;
21 import com.adobe.xmp.XMPMeta;
22 import com.adobe.xmp.XMPMetaFactory;
23 import com.adobe.xmp.XMPUtils;
24 import com.adobe.xmp.impl.xpath.XMPPath;
25 import com.adobe.xmp.impl.xpath.XMPPathParser
    [all...]
FixASCIIControlsReader.java 10 package com.adobe.xmp.impl;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
XMPAliasInfo.java 10 package com.adobe.xmp.properties;
12 import com.adobe.xmp.options.AliasOptions;
XMPProperty.java 10 package com.adobe.xmp.properties;
12 import com.adobe.xmp.XMPMeta;
13 import com.adobe.xmp.options.PropertyOptions;
XMPPropertyInfo.java 10 package com.adobe.xmp.properties;
12 import com.adobe.xmp.options.PropertyOptions;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
XMPPathSegment.java 10 package com.adobe.xmp.impl.xpath;
XMPPath.java 10 package com.adobe.xmp.impl.xpath;
17 * Representates an XMP XMPPath with segment accessor methods.
72 * @return Returns the size of the xmp path.
81 * Serializes the normalized XMP-path.

Completed in 291 milliseconds

1 2 3