Example usage for Java android.media ExifInterface fields, constructors, methods, implement or subclass
The text is from its open source code.
String | TAG_ARTIST Type is String. |
String | TAG_DATETIME Type is String. |
String | TAG_IMAGE_LENGTH Type is int. |
String | TAG_IMAGE_WIDTH Type is int. |
String | TAG_MAKE Type is String. |
String | TAG_MODEL Type is String. |
String | TAG_ORIENTATION Type is int. |
String | TAG_RESOLUTION_UNIT Type is int. |
String | TAG_APERTURE_VALUE Type is rational. |
String | TAG_DATETIME_DIGITIZED Type is String. |
String | TAG_DATETIME_ORIGINAL Type is String. |
String | TAG_EXPOSURE_TIME Type is double. |
String | TAG_F_NUMBER Type is double. |
String | TAG_APERTURE Type is double. |
String | TAG_FLASH Type is int. |
String | TAG_FOCAL_LENGTH Type is rational. |
String | TAG_ISO_SPEED_RATINGS Type is int. |
String | TAG_ISO Type is int. |
String | TAG_MAKER_NOTE Type is String. |
String | TAG_WHITE_BALANCE Type is int. |
String | TAG_GPS_ALTITUDE The altitude (in meters) based on the reference in TAG_GPS_ALTITUDE_REF. |
String | TAG_GPS_ALTITUDE_REF 0 if the altitude is above sea level. |
String | TAG_GPS_DATESTAMP Type is String. |
String | TAG_GPS_LATITUDE Type is rational. |
String | TAG_GPS_LATITUDE_REF Type is String. |
String | TAG_GPS_LONGITUDE Type is rational. |
String | TAG_GPS_LONGITUDE_REF Type is String. |
String | TAG_GPS_PROCESSING_METHOD Type is String. |
String | TAG_GPS_TIMESTAMP Type is String. |
int | ORIENTATION_UNDEFINED |
int | ORIENTATION_NORMAL |
int | ORIENTATION_FLIP_HORIZONTAL |
int | ORIENTATION_ROTATE_180 |
int | ORIENTATION_FLIP_VERTICAL |
int | ORIENTATION_TRANSPOSE |
int | ORIENTATION_ROTATE_90 |
int | ORIENTATION_TRANSVERSE |
int | ORIENTATION_ROTATE_270 |
ExifInterface(String filename) Reads Exif tags from the specified image file. | |
ExifInterface(FileDescriptor fileDescriptor) Reads Exif tags from the specified image file descriptor. | |
ExifInterface(InputStream inputStream) Reads Exif tags from the specified image input stream. |
String | getAttribute(String tag) Returns the value of the specified tag or null if there is no such tag in the image file. |
int | getAttributeInt(String tag, int defaultValue) Returns the integer value of the specified tag. |
boolean | getLatLong(float output[]) Stores the latitude and longitude value in a float array. |
byte[] | getThumbnail() Returns the JPEG compressed thumbnail inside the image file, or null if there is no JPEG compressed thumbnail. |
boolean | hasThumbnail() Returns true if the image file has a thumbnail. |
void | saveAttributes() Save the tag data into the original image file. |
void | setAttribute(String tag, String value) Set the value of the specified tag. |