D | ExifInterface.java | 605 private static class ExifAttribute { class in ExifInterface 613 private ExifAttribute(int format, int numberOfComponents, byte[] bytes) { in ExifAttribute() method in ExifInterface.ExifAttribute 617 private ExifAttribute(int format, int numberOfComponents, long bytesOffset, byte[] bytes) { in ExifAttribute() method in ExifInterface.ExifAttribute 624 public static ExifAttribute createUShort(int[] values, ByteOrder byteOrder) { in createUShort() 631 return new ExifAttribute(IFD_FORMAT_USHORT, values.length, buffer.array()); in createUShort() 634 public static ExifAttribute createUShort(int value, ByteOrder byteOrder) { in createUShort() 638 public static ExifAttribute createULong(long[] values, ByteOrder byteOrder) { in createULong() 645 return new ExifAttribute(IFD_FORMAT_ULONG, values.length, buffer.array()); in createULong() 648 public static ExifAttribute createULong(long value, ByteOrder byteOrder) { in createULong() 652 public static ExifAttribute createSLong(int[] values, ByteOrder byteOrder) { in createSLong() [all …]
|