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:
parent
1935f3d76d
commit
e970562055
@ -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")) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user