Skip to content

brysnm/flutter_image_editor

 
 

Repository files navigation

FlutterImageEditor

Image Editor Plugin with simple, easy support for image editing using Paints, Text, Filters, Emoji and Sticker like stories.

This is an updated version of the deprecated ImageEditorPro.

To start with this, we need to simply add the dependencies in the gradle file of our app module like this

Installation

First, add

fl_image_editor: any

as a dependency in your pubspec.yaml file.

Import

import 'package:fl_image_editor/flutter_image_editor.dart';

iOS

Add the following keys to your Info.plist file, located in <project root>/ios/Runner/Info.plist:

  • NSPhotoLibraryUsageDescription - describe why your app needs permission for the photo library. This is called Privacy - Photo Library Usage Description in the visual editor.
  • NSCameraUsageDescription - describe why your app needs access to the camera. This is called Privacy - Camera Usage Description in the visual editor.
  • NSMicrophoneUsageDescription - describe why your app needs access to the microphone, if you intend to record videos. This is called Privacy - Microphone Usage Description in the visual editor.

Or in text format add the key:

<key>NSPhotoLibraryUsageDescription</key>
<string>Used to demonstrate image picker plugin</string>
<key>NSCameraUsageDescription</key>
<string>Used to demonstrate image picker plugin</string>
<key>NSMicrophoneUsageDescription</key>
<string>Used to capture audio for image picker plugin</string>

Android

No configuration required - the plugin should work out of the box.

_editImage(String filePath) async {
  var editedImage = await Navigator.push(context, MaterialPageRoute(builder: (_) => FlutterImageEditor(
    defaultImage: File(filePath),
    appBarColor: Colors.blue,
    bottomBarColor: Colors.blue,
  )));
  // do something with the edited image
}

About

update of image editor pro

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 94.9%
  • Ruby 1.8%
  • Java 1.3%
  • Objective-C 1.2%
  • Swift 0.8%