flutter_image_editor icon indicating copy to clipboard operation
flutter_image_editor copied to clipboard

Flutter plugin, support android/ios.Support crop, flip, rotate, color martix, mix image, add text. merge multi images.

Results 42 flutter_image_editor issues
Sort by recently updated
recently updated
newest added

It seems that no native code has been implemented for web. I got following exception: ```stackTrace MissingPluginException(No implementation found for method memoryToMemory on channel top.kikt/flutter_image_editor) ``` Here is my code...

type: feature
handle: welcome PR
platform: web

I'm using ScaleOption to stretch an image, and it works fine on IOS Emulator. But when testing the exact same code on Android emulator, the image doesn't stretch, keeping the...

Lib Version:1.0.0 environment:>=2.7.0

final ImageEditorOption option = ImageEditorOption(); ColorOption coloroption = ColorOption.brightness(action.payload); option.addOption(coloroption); Uint8List result = await ImageEditor.editFileImage( file: File(mBean.path), imageEditorOption: option, ); Then load new Image: ExtendedImage.memory(result , fit: BoxFit.contain, mode: ExtendedImageMode.editor,...

While zoom the image to a larger proportion, crop image error, a platform exception thrown. (iOS is ok) Error info ![image](https://user-images.githubusercontent.com/16632821/89624726-41ab6880-d8c9-11ea-82e6-eb969e5f29d8.png) Could crop image: ![IMG_1877](https://user-images.githubusercontent.com/16632821/89625274-3442ae00-d8ca-11ea-95a4-25c3f01f86fa.png) Could not crop image: ![IMG_1876](https://user-images.githubusercontent.com/16632821/89625287-399ff880-d8ca-11ea-8b37-fff9de1dbce5.png)...

could you please fix this? thank you!

When transparent images are rotated, they show the same image multiple times :( _Originally posted by @MrYunusOZ in https://github.com/fluttercandies/flutter_image_editor/issues/84#issuecomment-1224274169_

Hi there, The crop is working great for .jpg or .png but I'm not able to crop an animated GIF with this method : ``` Future cropImageDataWithNativeLibrary( ExtendedImageEditorState? state) async...

type: feature
handle: wontfix