deakjahn / crop_image

An image cropper widget. Supports mobile, web and desktop.
https://pub.dev/packages/crop_image
MIT License
56 stars 31 forks source link

I want to get path of cropped image #13

Closed Shubham-Narkhede closed 2 years ago

Shubham-Narkhede commented 2 years ago

Hello, I used this plugin this works well for me. When I crop the image and want to get the path of this image then get some problems.

Image image = await controller.croppedImage(); data = await image.toByteData(format: ImageByteFormat.png);

I'm passing the image which i get from controller.croppedImage(). But they said The method 'toByteData' isn't defined for the type 'Image'.. So can you please help me out with this problem?

deakjahn commented 2 years ago

There's no path, the cropping is done on the bitmap itself, that is, in memory. If you need it as a file, save it for yourself first.