hnvn / flutter_image_cropper

A Flutter plugin for Android and iOS supports cropping images
995 stars 392 forks source link

compressFormat .webp support #88

Open Addictorator opened 5 years ago

Addictorator commented 5 years ago

I'm not sure about TOCropViewController, but uCrop has support for returning images in .webp format (in addition to jpg and png this package currently supports). WebP is in general 30-40% smaller in file size, can be viewed in flutter, and is far better for online storage due to lower storage requirements. Is it possible to port this feature to this package? Thanks

hnvn commented 5 years ago

TOCropViewController just return raw image data, the plugin handles the image compression job. I will have a look at Objective-C code and see whether I can support this feature or not. Thanks for your feedback.