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

Bella ·
更新时间:2024-11-10
· 1155 次阅读

目录

介绍

功能演示

安装

使用方法

拓展

UI定制

保持相对绘制路径

参考及其他文章

地址

参考插件

介绍

一款简洁实用的图片编辑器,纯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 编辑器

需要 登录 后方可回复, 如果你还没有账号请 注册新账号