mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-26 01:10:39 +00:00
Compare commits
No commits in common. "6f3612cd5546c58a6a2dac28f4a7fdbf28dca0f5" and "22d481d096cc612a2a68e20a9f7066e6ac344efa" have entirely different histories.
6f3612cd55
...
22d481d096
4 changed files with 4 additions and 10 deletions
|
@ -36,6 +36,7 @@ class LightmeterAnalyticsFirebase implements ILightmeterAnalyticsApi {
|
||||||
stackTrace,
|
stackTrace,
|
||||||
reason: reason,
|
reason: reason,
|
||||||
information: information,
|
information: information,
|
||||||
|
fatal: true,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,14 +10,7 @@ Future<double> evFromImage(Uint8List bytes) async {
|
||||||
final apertureValueRatio = (tags["EXIF FNumber"]?.values as IfdRatios?)?.ratios.first;
|
final apertureValueRatio = (tags["EXIF FNumber"]?.values as IfdRatios?)?.ratios.first;
|
||||||
final speedValueRatio = (tags["EXIF ExposureTime"]?.values as IfdRatios?)?.ratios.first;
|
final speedValueRatio = (tags["EXIF ExposureTime"]?.values as IfdRatios?)?.ratios.first;
|
||||||
if (iso == null || apertureValueRatio == null || speedValueRatio == null) {
|
if (iso == null || apertureValueRatio == null || speedValueRatio == null) {
|
||||||
throw ArgumentError(
|
throw FlutterError('Error parsing EXIF: ${tags.keys}');
|
||||||
'Error parsing EXIF: ${tags.keys.join(', ')}',
|
|
||||||
[
|
|
||||||
if (iso == null) 'EXIF ISOSpeedRatings',
|
|
||||||
if (apertureValueRatio == null) 'EXIF FNumber',
|
|
||||||
if (speedValueRatio == null) 'EXIF ExposureTime',
|
|
||||||
].join(', '),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
final aperture = apertureValueRatio.numerator / apertureValueRatio.denominator;
|
final aperture = apertureValueRatio.numerator / apertureValueRatio.denominator;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: lightmeter
|
name: lightmeter
|
||||||
description: Lightmeter app inspired by Material 3 design system.
|
description: Lightmeter app inspired by Material 3 design system.
|
||||||
publish_to: "none"
|
publish_to: "none"
|
||||||
version: 0.17.2+48
|
version: 0.17.1+47
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ">=3.0.0 <4.0.0"
|
||||||
|
|
|
@ -17,7 +17,7 @@ void main() {
|
||||||
'no EXIF',
|
'no EXIF',
|
||||||
() {
|
() {
|
||||||
final bytes = File('assets/launcher_icon_dev_512.png').readAsBytesSync();
|
final bytes = File('assets/launcher_icon_dev_512.png').readAsBytesSync();
|
||||||
expectLater(evFromImage(bytes), throwsArgumentError);
|
expectLater(evFromImage(bytes), throwsFlutterError);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue