Click or drag to resize

ExifParserParseFromByteArray Method

Parses a byte array of EXIF data.

Namespace:  Atalasoft.Imaging.Metadata
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public virtual ExifCollection ParseFromByteArray(
	byte[] exifData
)

Parameters

exifData
Type: SystemByte
An array containing the entire EXIF string to parse.

Return Value

Type: ExifCollection
An ExifCollection holding a list of all the EXIF values that were read. This list will be empty if no values were read.
Remarks
Use this method for dealing with raw image data. For reading Exif from an image, use ParseFromImage(String).
See Also