1014a111f10a7523415ca210bc6fe1e4f00183d31John Reck/*
2014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * Copyright (C) 2012 The Android Open Source Project
3014a111f10a7523415ca210bc6fe1e4f00183d31John Reck *
4014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * Licensed under the Apache License, Version 2.0 (the "License");
5014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * you may not use this file except in compliance with the License.
6014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * You may obtain a copy of the License at
7014a111f10a7523415ca210bc6fe1e4f00183d31John Reck *
8014a111f10a7523415ca210bc6fe1e4f00183d31John Reck *      http://www.apache.org/licenses/LICENSE-2.0
9014a111f10a7523415ca210bc6fe1e4f00183d31John Reck *
10014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * Unless required by applicable law or agreed to in writing, software
11014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * distributed under the License is distributed on an "AS IS" BASIS,
12014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * See the License for the specific language governing permissions and
14014a111f10a7523415ca210bc6fe1e4f00183d31John Reck * limitations under the License.
15014a111f10a7523415ca210bc6fe1e4f00183d31John Reck */
16014a111f10a7523415ca210bc6fe1e4f00183d31John Reck
17014a111f10a7523415ca210bc6fe1e4f00183d31John Reckpackage com.android.gallery3d.util;
18014a111f10a7523415ca210bc6fe1e4f00183d31John Reck
195fbfe6f1d1f407e68b7334c6a5988f20bcf16d79John Hofordimport com.adobe.xmp.XMPMeta;
205fbfe6f1d1f407e68b7334c6a5988f20bcf16d79John Hoford
21014a111f10a7523415ca210bc6fe1e4f00183d31John Reckimport java.io.InputStream;
22014a111f10a7523415ca210bc6fe1e4f00183d31John Reck
23014a111f10a7523415ca210bc6fe1e4f00183d31John Reckpublic class XmpUtilHelper {
24014a111f10a7523415ca210bc6fe1e4f00183d31John Reck
255fbfe6f1d1f407e68b7334c6a5988f20bcf16d79John Hoford    public static XMPMeta extractXMPMeta(InputStream is) {
26014a111f10a7523415ca210bc6fe1e4f00183d31John Reck        return null;
27014a111f10a7523415ca210bc6fe1e4f00183d31John Reck    }
28014a111f10a7523415ca210bc6fe1e4f00183d31John Reck
29014a111f10a7523415ca210bc6fe1e4f00183d31John Reck    public static boolean writeXMPMeta(String filename, Object meta) {
30014a111f10a7523415ca210bc6fe1e4f00183d31John Reck        return false;
31014a111f10a7523415ca210bc6fe1e4f00183d31John Reck    }
32014a111f10a7523415ca210bc6fe1e4f00183d31John Reck
33014a111f10a7523415ca210bc6fe1e4f00183d31John Reck}
34