ImageMetadataReader.GetReader

GetReader(string)

Creates a reader instance for EXIF tags

public static ImageMetadataReader GetReader(string fileName)
ParameterTypeDescription
fileNameStringFull name of the image file.

Return Value

Metadata reader instance

Remarks

The image file will be locked for changes until the reader’s Dispose is executed.

See Also


GetReader(Stream)

Creates a reader instance for EXIF tags

public static ImageMetadataReader GetReader(Stream stream)
ParameterTypeDescription
streamStreamImage data source stream

Return Value

Metadata reader instance

Remarks

It is important not to close the source stream until the reader’s Dispose is executed.

See Also