Hi,
I'm trying to read the metadata from an image file. The library can't seem to get an exif profile, so to get around it, I'm using MagickImage.GetAttribute instead. I'm passing int "date:create" to the attribute, but somehow this always returns me the current time when that image was read. This is different when I'm reading the image from image magick command line. Image magick CLI gives me a constant time equal to the timestamp stored by the filesystem to the file.
I'm trying to read the metadata from an image file. The library can't seem to get an exif profile, so to get around it, I'm using MagickImage.GetAttribute instead. I'm passing int "date:create" to the attribute, but somehow this always returns me the current time when that image was read. This is different when I'm reading the image from image magick command line. Image magick CLI gives me a constant time equal to the timestamp stored by the filesystem to the file.
exifDict = new Dictionary<ExifTag, string>
{
{ ExifTag.DateTime, image.GetAttribute("date:create") },
};
Here's the link to the file I'm testing: https://mega.nz/#!FxJHzSyT!ujV6vNaHyYx09Ql2mIghgarYTYbZH9fPmpQlihSSzRE