1.需求
在xxx产品需求中,需要将png图片转为jpg图片。
2.引用库
Dart
image: ^4.1.3
Dart图像库提供了以各种图像文件格式加载、保存和操作图像的功能。
该库可以与dart:io和dart:html一起用于命令行、Flutter和web应用程序。
注:4.0是该库先前版本的主要修订版。
支持的图像格式
Read/Write
- JPG
- PNG / Animated APNG
- GIF / Animated GIF
- BMP
- TIFF
- TGA
- PVR
- ICO
Read Only
- WebP / Animated WebP
- PSD
- EXR
Write Only
- CUR
https://pub-web.flutter-io.cn/packages/image
3.代码实现
Dart
import 'package:image/image.dart' as imglib;
//原图片本地路径
final cmd = imglib.Command()..decodeImageFile('/xxx/xxx/xx.png');
//image对象
var image = await cmd.getImage();
//转为jpg
var newImg = imglib.encodeJpg(image);
if (newPath != null) {
File('/xxx/xxx/xx/new.jpg').writeAsBytesSync(newImg);
}