flutter_image_editor
flutter_image_editor copied to clipboard
Flutter plugin, support android/ios.Support crop, flip, rotate, color martix, mix image, add text. merge multi images.
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...
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  Could crop image:  Could not crop image: ...
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...