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

1 2 3 4

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
XMPProperty.java 10 package com.adobe.xmp.properties;
12 import com.adobe.xmp.XMPMeta;
13 import com.adobe.xmp.options.PropertyOptions;
XMPAliasInfo.java 10 package com.adobe.xmp.properties;
12 import com.adobe.xmp.options.AliasOptions;
XMPPropertyInfo.java 10 package com.adobe.xmp.properties;
12 import com.adobe.xmp.options.PropertyOptions;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
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.
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...]
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
XMPError.java 10 package com.adobe.xmp;
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
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...]
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 */
XMPDateTime.java 10 package com.adobe.xmp;
18 * seconds. Dates and time in the serialized XMP are ISO 8601 strings. There are utility functions
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.
  /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...]
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...]
ParseRDF.java 10 package com.adobe.xmp.impl;
20 import com.adobe.xmp.XMPConst;
21 import com.adobe.xmp.XMPError;
22 import com.adobe.xmp.XMPException;
23 import com.adobe.xmp.XMPMetaFactory;
24 import com.adobe.xmp.XMPSchemaRegistry;
25 import com.adobe.xmp.options.PropertyOptions;
80 * The main parsing method. The XML tree is walked through from the root node and and XMP tree
81 * is created. This is a raw parse, the normalisation of the XMP tree happens outside.
84 * @return Returns an XMP metadata object (not normalized
89 XMPMetaImpl xmp = new XMPMetaImpl(); local
    [all...]
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...]
XMPIteratorImpl.java 10 package com.adobe.xmp.impl;
16 import com.adobe.xmp.XMPError;
17 import com.adobe.xmp.XMPException;
18 import com.adobe.xmp.XMPIterator;
19 import com.adobe.xmp.impl.xpath.XMPPath;
20 import com.adobe.xmp.impl.xpath.XMPPathParser;
21 import com.adobe.xmp.options.IteratorOptions;
22 import com.adobe.xmp.options.PropertyOptions;
23 import com.adobe.xmp.properties.XMPPropertyInfo;
28 * Iterates the XMP Tree according to a set of 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;
QName.java 10 package com.adobe.xmp.impl;
XMPUtilsImpl.java 12 package com.adobe.xmp.impl;
16 import com.adobe.xmp.XMPConst;
17 import com.adobe.xmp.XMPError;
18 import com.adobe.xmp.XMPException;
19 import com.adobe.xmp.XMPMeta;
20 import com.adobe.xmp.XMPMetaFactory;
21 import com.adobe.xmp.XMPUtils;
22 import com.adobe.xmp.impl.xpath.XMPPath;
23 import com.adobe.xmp.impl.xpath.XMPPathParser;
24 import com.adobe.xmp.options.PropertyOptions
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterTinyPlanet.java 23 import com.adobe.xmp.XMPException;
24 import com.adobe.xmp.XMPMeta;
83 XMPMeta xmp = ImageLoader.getXmpObject(MasterImage.getImage().getActivity()); local
84 // Do nothing, just use bitmapIn as is if we don't have XMP.
85 if(xmp != null) {
86 bitmapIn = applyXmp(bitmapIn, xmp, w);
110 private Bitmap applyXmp(Bitmap bitmapIn, XMPMeta xmp, int intermediateWidth) {
113 getInt(xmp, CROPPED_AREA_IMAGE_WIDTH_PIXELS);
115 getInt(xmp, CROPPED_AREA_IMAGE_HEIGHT_PIXELS);
117 getInt(xmp, CROPPED_AREA_FULL_PANO_WIDTH_PIXELS)
    [all...]
  /packages/apps/Gallery2/src_pd/com/android/gallery3d/util/
XmpUtilHelper.java 19 import com.adobe.xmp.XMPMeta;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
SerializeOptions.java 10 package com.adobe.xmp.options;
12 import com.adobe.xmp.XMPException;
13 import com.adobe.xmp.XMPMeta;
14 import com.adobe.xmp.XMPMetaFactory;
31 * Include a padding allowance for a thumbnail image. If no <tt>xmp:Thumbnails</tt> property
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetFragment.java 41 import com.adobe.xmp.XMPException;
42 import com.adobe.xmp.XMPMeta;
270 XMPMeta xmp = XmpUtil.extractXMPMeta(is); local
272 if (xmp != null) {
274 sourceBitmap = createPaddedBitmap(sourceBitmap, xmp, size);
446 private static Bitmap createPaddedBitmap(Bitmap bitmapIn, XMPMeta xmp, int intermediateWidth) {
449 getInt(xmp, CROPPED_AREA_IMAGE_WIDTH_PIXELS);
451 getInt(xmp, CROPPED_AREA_IMAGE_HEIGHT_PIXELS);
453 getInt(xmp, CROPPED_AREA_FULL_PANO_WIDTH_PIXELS);
455 getInt(xmp, CROPPED_AREA_FULL_PANO_HEIGHT_PIXELS)
    [all...]

Completed in 145 milliseconds

1 2 3 4