Couple of questions about reading Exif data.
-
GetExifProfile() is on MagickImage. Does the image get decoded if all you do is get that property?
using (MagickImage im = new MagickImage(SourceStream))
{
ExifProfile exifPro = im.GetExifProfile();
}
-
If it does decode the image, would it be possible to put a version of GetExifProfile() on MagickImageInfo so the image isn't decoded?