can I extract EXIF data from an image without reading the entire image?
Currently I have something like this:
Code: Select all
try
{
Magick::Image image(filePath);
exif["DateTime"] = QString(image.attribute("EXIF:DateTime").c_str());
exif["Model"] = QString(image.attribute("EXIF:Model").c_str());
...
}
catch (Magick::Exception &ex)
{
...
}
Thanks, Oliver