summaryrefslogtreecommitdiffstats
path: root/src_pd
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-10-17 18:47:39 -0700
committerJohn Reck <jreck@google.com>2012-10-18 17:11:00 -0700
commitf1135ad929aadaf873314cc14216c4a8b0ab5b7c (patch)
tree5f8a90ee540e44a86a11917ad13b8e69ef52569d /src_pd
parente1fb53368803126d6f128b16799f1875705d3562 (diff)
downloadandroid_packages_apps_Snap-f1135ad929aadaf873314cc14216c4a8b0ab5b7c.tar.gz
android_packages_apps_Snap-f1135ad929aadaf873314cc14216c4a8b0ab5b7c.tar.bz2
android_packages_apps_Snap-f1135ad929aadaf873314cc14216c4a8b0ab5b7c.zip
Save XMP & Exif data on edited photos
Bug: 7293391 Bug: 7329199 Bug: 7376660 Change-Id: I23b1637a9a494c1dc43b1fc1359cdaf3e75bc23f
Diffstat (limited to 'src_pd')
-rw-r--r--src_pd/com/android/gallery3d/util/XmpUtilHelper.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/src_pd/com/android/gallery3d/util/XmpUtilHelper.java b/src_pd/com/android/gallery3d/util/XmpUtilHelper.java
new file mode 100644
index 000000000..7cbd7f170
--- /dev/null
+++ b/src_pd/com/android/gallery3d/util/XmpUtilHelper.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.gallery3d.util;
+
+import java.io.InputStream;
+
+public class XmpUtilHelper {
+
+ public static Object extractXMPMeta(InputStream is) {
+ return null;
+ }
+
+ public static boolean writeXMPMeta(String filename, Object meta) {
+ return false;
+ }
+
+}