Flutter 之简洁实用的图片编辑器

Posted 静水流深zz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter 之简洁实用的图片编辑器相关的知识,希望对你有一定的参考价值。

介绍

一款简洁实用的图片编辑器,纯dart开发。支持:涂鸦、旋转&翻转、马赛克、添加文字,及自定义ui风格。

功能演示

涂鸦

旋转&翻转

马赛克

添加文字及删除

安装

添加依赖

dependencies:
  image_editor_dove: ^latest

import

import 'package:image_editor/flutter_image_editor.dart';

使用方法

获取到原图片后,将其传给ImageEditor 如下:

  Future<void> toImageEditor(File origin) async 
    return Navigator.push(context, MaterialPageRoute(builder: (context) 
      return ImageEditor(
        originImage: origin,
        //可空,支持自定义存储位置(编辑后的图片)
        savePath: customDirectory
      );
    )).then((result) 
      if (result is EditorImageResult) 
        setState(() 
          _image = result.newFile;
        );
      
    ).catchError((er) 
      debugPrint(er);
    );
  

返回结果

///The editor's result.
class EditorImageResult 
  ///宽度
  final int imgWidth;

  ///高度
  final int imgHeight;

  ///编辑后的图片
  final File newFile;

  EditorImageResult(this.imgWidth, this.imgHeight, this.newFile);

拓展

UI定制

一些按钮、滑块等widget支持自定义,可通过继承ImageEditorDelegate来自定义ui风格:

class YourUiDelegate extends ImageEditorDelegate
    ...


ImageEditor.uiDelegate = YourUiDelegate();

class ImageEditor extends StatefulWidget 

  const ImageEditor(Key? key, required this.originImage, this.savePath) : super(key: key);
   
   ...
    
  ///[uiDelegate] is determine the editor's ui style.
  ///You can extends [ImageEditorDelegate] and custome it by youself.
  static ImageEditorDelegate uiDelegate = DefaultImageEditorDelegate();

  @override
  State<StatefulWidget> createState() 
    return ImageEditorState();
  

保持相对绘制路径

为了获得更大的绘制区域,所以绘制面积并非为图片显示区域,这也就导致了旋转的时候,相对位置会有变化。如果你需要保持相对,可以控制绘制区域与图片显示区域保持一致即可。

参考及其他文章

地址

github仓库地址: image_editor_dove

插件地址:image_editor_dove

参考插件

signature | Flutter Package (flutter-io.cn)

其他文章

以上是关于Flutter 之简洁实用的图片编辑器的主要内容,如果未能解决你的问题,请参考以下文章

Flutter 之简洁实用的图片编辑器

一款简洁实用方便的相册图片浏览器

Flutter IDE:在 IDE 上展示改进建议

JSP 实用程序之简易页面编辑器

flutter 图片编辑矩形 editBox

flutter 图片编辑矩形 editBox