Searched refs:ExifParser (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
D | ExifReader.java | 46 ExifParser parser = ExifParser.parse(inputStream, mInterface); in read() 51 while (event != ExifParser.EVENT_END) { in read() 53 case ExifParser.EVENT_START_OF_IFD: in read() 56 case ExifParser.EVENT_NEW_TAG: in read() 64 case ExifParser.EVENT_VALUE_OF_REGISTERED_TAG: in read() 71 case ExifParser.EVENT_COMPRESSED_IMAGE: in read() 79 case ExifParser.EVENT_UNCOMPRESSED_STRIP: in read()
|
D | ExifModifier.java | 56 ExifParser parser = ExifParser.parse(is, mInterface); in ExifModifier() 83 flag |= ExifParser.OPTION_IFD_0; in commit() 86 flag |= ExifParser.OPTION_IFD_1; in commit() 89 flag |= ExifParser.OPTION_IFD_EXIF; in commit() 92 flag |= ExifParser.OPTION_IFD_GPS; in commit() 95 flag |= ExifParser.OPTION_IFD_INTEROPERABILITY; in commit() 98 ExifParser parser = ExifParser.parse(is, flag, mInterface); in commit() 101 while (event != ExifParser.EVENT_END) { in commit() 103 case ExifParser.EVENT_START_OF_IFD: in commit() 109 case ExifParser.EVENT_NEW_TAG: in commit()
|
D | ExifParser.java | 69 class ExifParser { class 201 private ExifParser(InputStream inputStream, int options, ExifInterface iRef) in ExifParser() method in ExifParser 239 protected static ExifParser parse(InputStream inputStream, int options, ExifInterface iRef) in parse() 241 return new ExifParser(inputStream, options, iRef); in parse() 252 protected static ExifParser parse(InputStream inputStream, ExifInterface iRef) in parse() 254 return new ExifParser(inputStream, OPTION_IFD_0 | OPTION_IFD_1 in parse()
|
D | ExifInterface.java | 1020 ExifParser parser = null; in rewriteExif() 1022 parser = ExifParser.parse(is, this); in rewriteExif()
|