码迷,mamicode.com
首页 > 其他好文 > 详细

如何在Flutter / Dart中读取(从磁盘)和调整图像大小

时间:2021-06-21 20:21:50      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pack   art   image   大小   write   new   res   rgb   pac   

import dart:io as Io;
import package:image/image.dart;
void main() {
  // Read a jpeg image from file.
  Image image = decodeImage(new Io.File(test.jpg).readAsBytesSync());
 
  // Resize the image to a 120x? thumbnail (maintaining the aspect ratio).
  Image thumbnail = copyResize(image,120);
 
  // Save the thumbnail as a PNG.
  new Io.File(out/thumbnail-test.png)
        ..writeAsBytesSync(encodePng(thumbnail));
}

 

如何在Flutter / Dart中读取(从磁盘)和调整图像大小

标签:pack   art   image   大小   write   new   res   rgb   pac   

原文地址:https://www.cnblogs.com/liuys635/p/14911101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!