mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-02-22 12:30:40 +00:00
added runtime type to iso
This commit is contained in:
parent
831515c212
commit
34f6612af9
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ Future<double> evFromImage(Uint8List bytes) async {
|
||||||
throw ArgumentError(
|
throw ArgumentError(
|
||||||
'Error parsing EXIF',
|
'Error parsing EXIF',
|
||||||
[
|
[
|
||||||
if (iso == null) '$_isoExifKey: "${tags[_isoExifKey]?.printable}"',
|
if (iso == null) '$_isoExifKey: ${tags[_isoExifKey]?.printable} ${tags[_isoExifKey]?.printable.runtimeType}',
|
||||||
if (apertureValueRatio == null) '$_apertureExifKey: $apertureValueRatio',
|
if (apertureValueRatio == null) '$_apertureExifKey: $apertureValueRatio',
|
||||||
if (speedValueRatio == null) '$_shutterSpeedExifKey: $speedValueRatio',
|
if (speedValueRatio == null) '$_shutterSpeedExifKey: $speedValueRatio',
|
||||||
].join(', '),
|
].join(', '),
|
||||||
|
|
Loading…
Reference in a new issue