metadata: check for "Exif.Photo.ExposureBiasValue" in addition to "Exif.Image.ExposureBiasValue" for exposure compensation

Fixes #49

(cherry picked from commit a7cb9add3453c581347e738110461f0af15cb1cb)
This commit is contained in:
Alberto Griggio 2020-04-11 00:31:55 +02:00 committed by Lawrence Lee
parent 1935f3d76d
commit e970562055
No known key found for this signature in database
GPG Key ID: 048FF2B76A63895F

View File

@ -321,6 +321,8 @@ FramesData::FramesData(const Glib::ustring &fname) :
if (find_exif_tag("Exif.Image.ExposureBiasValue")) {
expcomp = pos->toFloat();
} else if (find_exif_tag("Exif.Photo.ExposureBiasValue")) {
expcomp = pos->toFloat();
}
if (find_exif_tag("Exif.Image.Rating")) {