Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.9 KB

File metadata and controls

29 lines (21 loc) · 1.9 KB

openize.heic.decoder.ExifData

Exchangeable image file format class. Grants access to raw EXIF-data and to data by specific tags.

Properties

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.

Constructors

Name Description Parameters
ExifData Create EXIF-data object. BitStreamWithNalSupport stream - File stream.
HeicImage image - Parent heic image.
HeicImageFrame exifFrame - EXIF HEIC frame.

Methods

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.

[Back to API_README]