D | ExifInterface.java | 1067 private static class ExifTag { class in ExifInterface 1073 private ExifTag(String name, int number, int format) { in ExifTag() method in ExifInterface.ExifTag 1080 private ExifTag(String name, int number, int primaryFormat, int secondaryFormat) { in ExifTag() method in ExifInterface.ExifTag 1089 private static final ExifTag[] IFD_TIFF_TAGS = new ExifTag[] { 1091 new ExifTag(TAG_NEW_SUBFILE_TYPE, 254, IFD_FORMAT_ULONG), 1092 new ExifTag(TAG_SUBFILE_TYPE, 255, IFD_FORMAT_ULONG), 1093 new ExifTag(TAG_IMAGE_WIDTH, 256, IFD_FORMAT_USHORT, IFD_FORMAT_ULONG), 1094 new ExifTag(TAG_IMAGE_LENGTH, 257, IFD_FORMAT_USHORT, IFD_FORMAT_ULONG), 1095 new ExifTag(TAG_BITS_PER_SAMPLE, 258, IFD_FORMAT_USHORT), 1096 new ExifTag(TAG_COMPRESSION, 259, IFD_FORMAT_USHORT), [all …]
|