AlvaroVasconcelos / flutter_web_image_picker

A package designed for input images on web flutter.
https://pub.dev/packages/flutter_web_image_picker
GNU General Public License v3.0
41 stars 14 forks source link

Return bytes (Uint8List) instead of image widget #4

Open einkunz opened 4 years ago

einkunz commented 4 years ago

Hi,

I think it´s better to return the raw image data as Uint8List and not as image widget. Then you can process the image more easily

erparker commented 4 years ago

Plus 1 for this! Or just add a second method that returns the Uint8List if that's what is needed

Ahmadre commented 4 years ago

with this you got the option: https://pub.dev/packages/image_picker_web

einkunz commented 4 years ago

it works. Thank you.