A lightweight library to fetch EXIF metadata using ExifTool.
$ dotnet add package ExifFetcherExifFetcher is a C# library that provides functionality to fetch EXIF data from images using the ExifTool utility.
using ExifFetcher;
var exifToolPath = @"C:\<exiftool_folder>\exiftool(-k).exe";
var exifFetcher = new ExifToolFetcher(exifToolPath);
var exifData = await exifFetcher.FetchExifFrom(@"C:\<image_folder>\image.jpg");
foreach (var kvp in exifData)
{
Console.WriteLine($"{kvp.Key}: {kvp.Value}");
}
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the MIT License.