/packages/apps/Gallery2/src_pd/com/android/gallery3d/util/ |
XmpUtilHelper.java | 19 import com.adobe.xmp.XMPMeta; 25 public static XMPMeta extractXMPMeta(InputStream is) {
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
XMPMetaFactory.java | 24 * Creates <code>XMPMeta</code>-instances from an <code>InputStream</code> 54 * @return Returns an empty <code>XMPMeta</code>-object. 56 public static XMPMeta create() 67 * @return Returns the <code>XMPMeta</code>-object created from the input. 70 public static XMPMeta parse(InputStream in) throws XMPException 89 * <li> XMP_REQUIRE_XMPMETA - The <x:xmpmeta> XML element is required around 94 * @return Returns the <code>XMPMeta</code>-object created from the input. 97 public static XMPMeta parse(InputStream in, ParseOptions options) 109 * @return Returns the <code>XMPMeta</code>-object created from the input. 112 public static XMPMeta parseFromString(String packet) throws XMPExceptio [all...] |
XMPUtils.java | 57 public static String catenateArrayItems(XMPMeta xmp, String schemaNS, String arrayName, 83 public static void separateArrayItems(XMPMeta xmp, String schemaNS, String arrayName, 138 public static void removeProperties(XMPMeta xmp, String schemaNS, String propName, 154 public static void appendProperties(XMPMeta source, XMPMeta dest, boolean doAllProperties, 238 public static void appendProperties(XMPMeta source, XMPMeta dest, boolean doAllProperties,
|
XMPMeta.java | 27 public interface XMPMeta extends Cloneable 204 * @see XMPMeta#setProperty(String, String, Object, PropertyOptions) 228 * the last existing item, use {@link XMPMeta#countArrayItems(String, String)} to find 244 * @see XMPMeta#setArrayItem(String, String, int, String, PropertyOptions) 285 * @see XMPMeta#insertArrayItem(String, String, int, String, PropertyOptions) 319 * {@link XMPMeta#appendArrayItem(String, String, String)}. 333 * @see XMPMeta#appendArrayItem(String, String, PropertyOptions, String, PropertyOptions) 375 * @see XMPMeta#setStructField(String, String, String, String, String, PropertyOptions) 426 * @see XMPMeta#setQualifier(String, String, String, String, String, PropertyOptions) [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/ |
XMPProperty.java | 12 import com.adobe.xmp.XMPMeta; 36 * Only set by {@link XMPMeta#getLocalizedText(String, String, String, String)}.
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
ParameterAsserts.java | 15 import com.adobe.xmp.XMPMeta; 140 public static void assertImplementation(XMPMeta xmp) throws XMPException 149 throw new XMPException("The XMPMeta-object is not compatible with this implementation",
|
XMPUtilsImpl.java | 19 import com.adobe.xmp.XMPMeta; 58 * @see XMPUtils#catenateArrayItems(XMPMeta, String, String, String, String, 83 public static String catenateArrayItems(XMPMeta xmp, String schemaNS, String arrayName, 147 * see {@link XMPUtils#separateArrayItems(XMPMeta, String, String, String, 169 public static void separateArrayItems(XMPMeta xmp, String schemaNS, String arrayName, 388 * @see XMPUtils#removeProperties(XMPMeta, String, String, boolean, boolean) 408 public static void removeProperties(XMPMeta xmp, String schemaNS, String propName, 506 * @see XMPUtils#appendProperties(XMPMeta, XMPMeta, boolean, boolean) 514 public static void appendProperties(XMPMeta source, XMPMeta destination [all...] |
XMPMetaParser.java | 34 import com.adobe.xmp.XMPMeta; 72 public static XMPMeta parse(Object input, ParseOptions options) throws XMPException 301 * Pick the first x:xmpmeta among multiple root candidates. If there aren't 303 * the rdf:RDF child if an x:xmpmeta element was chosen. The search is 308 * @param xmpmetaRequired flag if the xmpmeta-tag is still required, might be set 323 // Look among this parent's content for x:xapmeta or x:xmpmeta. 324 // The recursion for x:xmpmeta is broader than the strictly defined choice,
|
XMPNormalizer.java | 21 import com.adobe.xmp.XMPMeta; 54 * Normalizes a raw parsed XMPMeta-Object 60 static XMPMeta process(XMPMetaImpl xmp, ParseOptions options) throws XMPException 590 private static void migrateAudioCopyright (XMPMeta xmp, XMPNode dmCopyright)
|
XMPSerializerRDF.java | 23 import com.adobe.xmp.XMPMeta; 29 * Serializes the <code>XMPMeta</code>-object using the standard RDF serialization format. 48 "<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\""; 50 private static final String RDF_XMPMETA_END = "</x:xmpmeta>"; 95 public void serialize(XMPMeta xmp, OutputStream out, 251 // Write the xmpmeta element's start tag. 282 // Write the xmpmeta end tag. 771 * entire serialization, that of the x:xmpmeta element. An xml:lang [all...] |
XMPMetaImpl.java | 20 import com.adobe.xmp.XMPMeta; 32 * Implementation for {@link XMPMeta}. 36 public class XMPMetaImpl implements XMPMeta, XMPConst 85 * @see XMPMeta#appendArrayItem(String, String, PropertyOptions, String, 154 * @see XMPMeta#appendArrayItem(String, String, String) 165 * @see XMPMeta#countArrayItems(String, String) 192 * @see XMPMeta#deleteArrayItem(String, String, int) 212 * @see XMPMeta#deleteProperty(String, String) 237 * @see XMPMeta#deleteQualifier(String, String, String, String) 258 * @see XMPMeta#deleteStructField(String, String, String, String [all...] |
/packages/apps/Camera2/src/com/android/camera/util/ |
XmpUtil.java | 22 import com.adobe.xmp.XMPMeta; 40 * XMPMeta xmpMeta = XmpUtil.extractOrCreateXMPMeta(filename); 41 * xmpMeta.setProperty(PanoConstants.GOOGLE_PANO_NAMESPACE, "property_name", "value"); 42 * XmpUtil.writeXMPMeta(filename, xmpMeta); 45 * XMPMeta xmpMeta = XmpUtil.createXMPMeta(); 46 * xmpMeta.setPropertyBoolean(PanoConstants.GOOGLE_PANO_NAMESPACE, "bool_property_name", "true"); 47 * XmpUtil.writeXMPMeta(filename, xmpMeta); 80 * Extracts XMPMeta from JPEG image file [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterTinyPlanet.java | 24 import com.adobe.xmp.XMPMeta; 83 XMPMeta xmp = ImageLoader.getXmpObject(MasterImage.getImage().getActivity()); 110 private Bitmap applyXmp(Bitmap bitmapIn, XMPMeta xmp, int intermediateWidth) { 153 private static int getInt(XMPMeta xmp, String key) throws XMPException {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/ |
XmpPresets.java | 24 import com.adobe.xmp.XMPMeta; 63 XMPMeta xmpMeta = null; 66 xmpMeta = XmpUtilHelper.extractXMPMeta(is); 73 if (xmpMeta == null) { 74 xmpMeta = XMPMetaFactory.create(); 77 xmpMeta.setProperty(XMP_GOOGLE_FILTER_NAMESPACE, 79 xmpMeta.setProperty(XMP_GOOGLE_FILTER_NAMESPACE, 86 if (!XmpUtilHelper.writeXMPMeta(dstFile.getAbsolutePath(), xmpMeta)) { 96 XMPMeta xmpMeta = null [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
SerializeOptions.java | 13 import com.adobe.xmp.XMPMeta; 18 * Options for {@link XMPMetaFactory#serializeToBuffer(XMPMeta, SerializeOptions)}.
|
/packages/apps/Camera2/src/com/android/camera/tinyplanet/ |
TinyPlanetFragment.java | 43 import com.adobe.xmp.XMPMeta; 271 XMPMeta xmp = XmpUtil.extractXMPMeta(is); 449 private static Bitmap createPaddedBitmap(Bitmap bitmapIn, XMPMeta xmp, int intermediateWidth) { 492 private static int getInt(XMPMeta xmp, String key) throws XMPException {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
ImageLoader.java | 37 import com.adobe.xmp.XMPMeta; 511 public static XMPMeta getXmpObject(Context context) { 530 XMPMeta meta = XmpUtilHelper.extractXMPMeta(is);
|