Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.76 KB

File metadata and controls

29 lines (21 loc) · 1.76 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<MetadataExtractor.Directory> List of exif directories in frame.
TagList List<MetadataExtractor.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
GetExifString string Returns the string value for the particular tag type and the directorty specified as a class. int tagType - The tag type identifier.
GetExifString object Returns the raw value for the particular tag type and the directorty specified as a class. int tagType - The tag type identifier.
GetExifString string Returns the string value for the particular tag type and the directorty specified as a parameter. ExifDirectoryType dirType - The directory type identifier.
int tagType - The tag type identifier.
GetExifString object Returns the string value for the particular tag type and the directorty specified as a parameter. ExifDirectoryType dirType - The directory type identifier.
int tagType - The tag type identifier.

[Back to API_README]