Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 368 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 368 Bytes

Exif Manager

Using Metadata Extractor

IExifReader reader = ExifReaderFactory.GetReader(ReaderType.MetadataExtractor);
List<string> tags = reader.Read("absolute/path/to/your/file")

Using Exif Libarary NET

IExifReader reader = ExifReaderFactory.GetReader(ReaderType.ExifLib);
List<string> tags = reader.Read("absolute/path/to/your/file")