Dart - 如何获取png文件的图像高度和宽度?

时间:2016-05-06 14:10:56

标签: dart

有没有办法获得这个尺码?使用命令行。提前致谢。我可以在Dart中问一些好的教程吗?

2 个答案:

答案 0 :(得分:1)

我不知道内置功能允许这样做,除了按字节顺序准备内容并解释C++ How to get the Image size of a png file (in directory)

中针对C ++所解释的值

image包似乎提供了此功能。 decodePng返回具有width和height属性的图像。

答案 1 :(得分:0)

内置函数decodeImageFromList()可以帮助您。其回调包含一个Image,其中包含宽度和高度。