将图像格式转换为字节格式

时间:2018-07-20 09:03:29

标签: flutter

如何使用flutter的on_click按钮获取字节格式的图像,以及如何在任何设备上的图库中存储图像,请提供帮助。

  onPressed: () {
    isVideo = false;
    _onImageButtonPressed(ImageSource.camera);
  }

1 个答案:

答案 0 :(得分:0)

这应该得到字节:

  onImageButtonPressed(Future<File> futureFile) {
    var file = await futureFile;
    var bytes = file.readAsBytesSync();
  }