D | ExifInterface.java | 969 private static class ExifTag { class in ExifInterface 975 private ExifTag(String name, int number, int format) { in ExifTag() method in ExifInterface.ExifTag 982 private ExifTag(String name, int number, int primaryFormat, int secondaryFormat) { in ExifTag() method in ExifInterface.ExifTag 991 private static final ExifTag[] IFD_TIFF_TAGS = new ExifTag[] { 993 new ExifTag(TAG_NEW_SUBFILE_TYPE, 254, IFD_FORMAT_ULONG), 994 new ExifTag(TAG_SUBFILE_TYPE, 255, IFD_FORMAT_ULONG), 995 new ExifTag(TAG_IMAGE_WIDTH, 256, IFD_FORMAT_USHORT, IFD_FORMAT_ULONG), 996 new ExifTag(TAG_IMAGE_LENGTH, 257, IFD_FORMAT_USHORT, IFD_FORMAT_ULONG), 997 new ExifTag(TAG_BITS_PER_SAMPLE, 258, IFD_FORMAT_USHORT), 998 new ExifTag(TAG_COMPRESSION, 259, IFD_FORMAT_USHORT), [all …]
|