hnvn / flutter_image_cropper

A Flutter plugin for Android and iOS supports cropping images
971 stars 374 forks source link

byte in web ImageCropper #367

Open mbfakourii opened 1 year ago

mbfakourii commented 1 year ago

How to use Byte in Web Image Cropper?

For example, after selecting the file, the photo needs to be cropped and the file on the web is in the form of bytes!

ektapadaliya commented 1 year ago

@mbfakourii Did you find any solution ?

mbfakourii commented 1 year ago

@mbfakourii Did you find any solution ?

No !

ektapadaliya commented 1 year ago

@mbfakourii So how you use crop image in WEB?

mbfakourii commented 1 year ago

I show the original photo!

ektapadaliya commented 1 year ago

@mbfakourii I solved it.

CroppedFile(croppedFile.path).readAsBytes();

This will give you bytes in web.

mbfakourii commented 1 year ago

Thank you, I will test