Exchangeable image file format class. Grants access to raw EXIF-data and to data by specific tags.
| Name | Type | Description | Notes |
|---|---|---|---|
| DirectoriesList | List<com.drew.metadata.Directory> | List of EXIF directories in frame. | |
| TagList | List<com.drew.metadata.Tag> | List of all tags that present in directories. | |
| RawBytes | byte[] | Raw EXIF data in bytes. |
| Name | Description | Parameters |
|---|---|---|
| ExifData | Create EXIF-data object. | BitStreamWithNalSupport stream - File stream. HeicImage image - Parent heic image. HeicImageFrame exifFrame - EXIF HEIC frame. |
| Name | Type | Description | Parameters |
|---|---|---|---|
| getExifRawData | <T> | Returns the string value for the particular tag type and the directory specified as a class. | Class<T> dirType - The directory class. int tagType - The tag type identifier. |
| getExifRawData | Object | Returns the raw value for the particular tag type and the directory specified as a class. | int tagType - The tag type identifier. |
| getExifString<T> | String | Returns the string value for the particular tag type and the directory specified as a parameter. | Class<T> dirType - The directory class. ExifDirectoryType dirType - The directory type identifier. int tagType - The tag type identifier. |
| getExifString | String | Returns the string value for the particular tag type and the directory specified as a parameter. | ExifDirectoryType dirType - The directory type identifier. int tagType - The tag type identifier. |