image_editor 0.2.1 copy "image_editor: ^0.2.1" to clipboard
image_editor: ^0.2.1 copied to clipboard

outdated

Rotate ,flip, crop your image. Use objc/kotlin to handle it.

image_editor #

CI

Support android ios, use the native way to flip, crop, rotate pictures.

The version of readme pub and github may be inconsistent, please refer to github.

Screenshot #

img

Usage #

pub package GitHub GitHub stars

dependencies:
  image_editor: ^0.2.0

Import

import 'package:image_editor/image_editor.dart';

Method list:

ImageEditor.editImage();
ImageEditor.editFileImage();
ImageEditor.editFileImageAndGetFile();
ImageEditor.editImageAndGetFile();

Example used alone

Example of extended_image

ImageEditor method params #

Name Description
image dart.typed_data.Uint8List
file dart.io.File
imageEditorOption flutter_image_editor.ImageEditorOption

ImageEditorOption #

final editorOption = ImageEditorOption();
editorOption.addOption(FlipOption());
editorOption.addOption(ClipOption());
editorOption.addOption(RotateOption());

editorOption.outputFormat = OutputFormat.png(88);

Option #

Flip

FlipOption(horizontal:true, vertical:false);

Clip

ClipOption(x:0, y:0, width:1920, height:1920);

Rotate

RotateOption(degree: 180);

OutputFormat #

var outputFormat = OutputFormat.png();
var outputFormat = OutputFormat.jpeg(95);

Common issue #

..../image_editor-0.1.4/ios/Classes/FlutterImageEditorPlugin.m:2:9: 'image_editor/image_editor-Swift.h' file not found

See #10

LICENSE #

MIT Style.

315
likes
0
pub points
98%
popularity

Publisher

verified publisherfluttercandies.com

Rotate ,flip, crop your image. Use objc/kotlin to handle it.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on image_editor