-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
flutter/packages
#3783Labels
P1High-priority issues at the top of the work listHigh-priority issues at the top of the work listp: image_pickerThe Image Picker plugin.The Image Picker plugin.packageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-iosiOS applications specificallyiOS applications specifically
Description
On iOS 16.2 the meta kCGImagePropertyExifDictionary value is:
"{Exif}" = {
ColorSpace = 1;
PixelXDimension = 12;
PixelYDimension = 7;
};
However on iOS 16 it is:
"{Exif}" = {
ColorSpace = 1;
MakerNote = aNote;
PixelXDimension = 12;
PixelYDimension = 7;
};
The test is checking for MakerNote = aNote; and failing.
/Volumes/Work/s/w/ir/x/w/packages/packages/image_picker/image_picker_ios/example/ios/RunnerTests/PhotoAssetUtilTests.m:90: error: -[PhotoAssetUtilTests testSaveImageWithPickerInfo_ShouldSaveWithTheCorrectExtentionAndMetaData] : ((meta[(__bridge NSString *)kCGImagePropertyExifDictionary] [(__bridge NSString *)kCGImagePropertyExifMakerNote]) equal to (@"aNote")) failed: ("(null)") is not equal to ("aNote")
Metadata
Metadata
Assignees
Labels
P1High-priority issues at the top of the work listHigh-priority issues at the top of the work listp: image_pickerThe Image Picker plugin.The Image Picker plugin.packageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-iosiOS applications specificallyiOS applications specifically