flutter项目中 advance_image_picker 组件使用

2023-10-08 20:30

本文主要是介绍flutter项目中 advance_image_picker 组件使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、说明

Advance_image_picker 是flutter 插件,用于从Android 和 ios 图像库中选择多张图片,使用相机拍摄新照片,并对其进行编辑。

下图为最终效果:
在这里插入图片描述
这里有个bug ,在连续多测按 旋转摄像头时,程序会出现卡顿的情况。

二、使用方式

IOS :
将这些设置添加到 ios/Runner/Info.plist

<key>NSCameraUsageDescription</key>
<string>Can I use the camera please?</string>
<key>NSMicrophoneUsageDescription</key>
<string>Can I use the mic please?</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>App need your agree, can visit your album</string>

Android :
在您的android/app/build.gradle文件中将最低 Android sdk 版本更改为 21(或更高)。
将活动和使用权限添加到您的AndroidManifest.xml,就像下一步一样。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"package="vn.weta.freemarimagepickerexample"><applicationandroid:name="io.flutter.app.FlutterApplication"android:label="freemarimagepicker_example"android:requestLegacyExternalStorage="true"android:icon="@mipmap/ic_launcher"><activityandroid:name="com.yalantis.ucrop.UCropActivity"android:screenOrientation="portrait"android:theme="@style/Theme.AppCompat.Light.NoActionBar"/></application><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /><uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /><uses-permission android:name="android.permission.CAMERA" />
</manifest>

添加到 pubspec
flutter项目的 pubspec.yaml 中添加依赖:

dependencies:advance_image_picker: $latest_version

三、项目代码

最近自己动手做的项目是通过Getx 开发。插件测试代码分为 view 端代码和 controller 端代码,这里一并贴出

view 端代码:


class ImagePickerScreen extends GetView<ImagePickerController> {@overrideWidget build(BuildContext context) {return Scaffold(appBar: AppBar(title: Obx(() => Text(controller.pageName.value,style: TextStyle(color: Theme.of(context).appBarTheme.titleTextStyle!.color,),),),centerTitle: true,),body: _buildBody(context),);}Widget _buildBody(BuildContext context) {return SingleChildScrollView(child: SafeArea(child: Column(mainAxisAlignment: MainAxisAlignment.start,children: [Container(child: ElevatedButton(onPressed: () {controller.getImages();},child: Text('上传图标'),),),_buildImages(context),],),),);}Widget _buildImages(BuildContext context) {return Obx(() => GridView.builder(itemCount: controller.imgObjs.length,shrinkWrap: true,gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 4, mainAxisSpacing: 2),itemBuilder: (BuildContext context, int index) {return Padding(padding: EdgeInsets.all(2),child: Image.file(File(controller.imgObjs[index]),height: 80,fit: BoxFit.cover,),);},),);}
}

contoller 部分代码:
ApiRepository 用于网络请求 ,这里通过构造器依赖注入。由于测试过程中,没有用到网络请求,这部分省略。

class ImagePickerController extends GetxControllerwith GetSingleTickerProviderStateMixin {final pageName = "imagePicker".obs;final ApiRepository apiRepository;late ImagePickerConfigs imageConfig;RxList<String> imgObjs = <String>[].obs;CommodityAddController({required this.apiRepository});@overridevoid onInit() {imageConfig = ImagePickerConfigs();imageConfig.appBarTextColor = Colors.white;imageConfig.appBarBackgroundColor = Colors.black54;imageConfig.stickerFeatureEnabled = false; // ON/OFF featuresimageConfig.translateFunc = (name, value) => name.tr;imageConfig.iconCamera = FontAwesomeIcons.camera;imageConfig.doneButtonStyle = DoneButtonStyle.outlinedButton;imageConfig.adjustFeatureEnabled = false;imageConfig.externalImageEditors['external_image_editor_1'] = EditorParams(title: 'external_image_editor_1',icon: Icons.edit_rounded,onEditorEvent: ({required BuildContext context,required File file,required String title,int maxWidth = 1080,int maxHeight = 1920,int compressQuality = 90,ImagePickerConfigs? configs}) async =>navigator!.push(MaterialPageRoute(fullscreenDialog: true,builder: (context) => ImageEdit(file: file,title: title,maxWidth: maxWidth,maxHeight: maxHeight,configs: configs),),),);imageConfig.imagePreProcessingBeforeEditingEnabled = true;imageConfig.filterFeatureEnabled = false;imageConfig.imagePreProcessingEnabled = true;imageConfig.cropFeatureEnabled = false;super.onInit();}void getImages() async {List<ImageObject> objects = await navigator!.push(MaterialPageRoute(builder: (_) {return ImagePicker(maxCount: 5);},),);if (objects.length > 0) {imgObjs.addAll(objects.map((e) => e.modifiedPath).toList());}}
}

四、最后注意事项

ImagePickerConfigs 为imagePicker 配置信息。该插件在弹出图片选择界面后,显示语言默认 英文显示。

imageConfig.translateFunc = (name, value) => name.tr; 用于配置 imagePicker语言国际化。

getx 多语言配置:

  1. 文件结构:
    在这里插入图片描述
  2. 文件内容:

translation_service.dart:

import 'dart:ui';import 'package:get/get.dart';import 'en_US.dart';
import 'zh_CN.dart';class TranslationService extends Translations {static Locale? get locale => Get.deviceLocale;static final fallbackLocale = Locale('zh', 'CN');@overrideMap<String, Map<String, String>> get keys => {'zh_CN': zh_CN,'en_US': en_US,};
}

en_US.dart

const Map<String, String> en_US = {'name': 'name','image_picker_camera_title': 'camera','image_picker_album_title': 'album','image_picker_select_button_title': 'select','image_picker_select_images_title': 'selected images count:','image_picker_select_images_guide': 'drag images for sorting list...:','image_picker_exposure_title':'exposure','image_picker_exposure_locked_title':'locked','image_picker_exposure_auto_title':'auto',
};

zh_CN.dart

const Map<String, String> zh_CN = {'name': '用户名','image_picker_camera_title': '相机','image_picker_album_title': '相册','image_picker_select_button_title': '确定','image_picker_select_images_title': '已选择:','image_picker_select_images_guide': '拖动图片重新排序:','image_picker_exposure_title': '滤镜','image_picker_exposure_locked_title': '锁定','image_picker_exposure_auto_title': '自动','image_picker_confirm': '确定','image_picker_confirm_delete': '是否要删除这张照片','no': '否','yes': '是','image_picker_exit_without_selecting': '是否要退出而不选择图像?','image_picker_preview_title': '预览','image_picker_image_edit_title': '编辑','image_picker_image_edit_contrast': '对比度','image_picker_image_edit_brightness': '亮度','image_picker_image_edit_saturation': '饱和度','image_picker_image_filter_title': '滤镜','image_picker_confirm_reset_changes': '是否重置更改?',
};

main.dart 中 需要 传递参数给GetMaterialApp来定义语言和翻译。

return GetMaterialApp(translations: Messages(), // 你的翻译locale: Locale('zh', 'CN'), // 将会按照此处指定的语言翻译fallbackLocale: Locale('en', 'US'), // 添加一个回调语言选项,以备上面指定的语言翻译不存在
);

项目中的配置:
在这里插入图片描述

这篇关于flutter项目中 advance_image_picker 组件使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/167806

相关文章

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

Mysql虚拟列的使用场景

《Mysql虚拟列的使用场景》MySQL虚拟列是一种在查询时动态生成的特殊列,它不占用存储空间,可以提高查询效率和数据处理便利性,本文给大家介绍Mysql虚拟列的相关知识,感兴趣的朋友一起看看吧... 目录1. 介绍mysql虚拟列1.1 定义和作用1.2 虚拟列与普通列的区别2. MySQL虚拟列的类型2

使用MongoDB进行数据存储的操作流程

《使用MongoDB进行数据存储的操作流程》在现代应用开发中,数据存储是一个至关重要的部分,随着数据量的增大和复杂性的增加,传统的关系型数据库有时难以应对高并发和大数据量的处理需求,MongoDB作为... 目录什么是MongoDB?MongoDB的优势使用MongoDB进行数据存储1. 安装MongoDB

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

mysql数据库分区的使用

《mysql数据库分区的使用》MySQL分区技术通过将大表分割成多个较小片段,提高查询性能、管理效率和数据存储效率,本文就来介绍一下mysql数据库分区的使用,感兴趣的可以了解一下... 目录【一】分区的基本概念【1】物理存储与逻辑分割【2】查询性能提升【3】数据管理与维护【4】扩展性与并行处理【二】分区的

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学