fluttercandies / flutter_image_editor

Flutter plugin, support android/ios.Support crop, flip, rotate, color martix, mix image, add text. merge multi images.
Apache License 2.0
407 stars 124 forks source link

Fix: Create JPEG images without embedded ICC profile #116

Closed bcse closed 5 months ago

bcse commented 1 year ago

UIImageJPEGRepresentation encoded image included Apple Generic RGB profile by default. But Flutter doesn't decode them with ICC profile, and the result may have slightly color shifted.

I don't find any documented way to create JPEG on iOS without embedded ICC profile. But I found that using Image I/O framework with OptimizeColorForSharing=True will not include Apple Generic RGB profile. So Flutter can display them correctly.

This pull request is using Image I/O framework to encode JPEG on iOS.

bcse commented 5 months ago

Thank you for merging!

My fix is in image_editor_common but it seems you didn't release new version of image_editor_common.