如何使用flutter的on_click按钮获取字节格式的图像,以及如何在任何设备上的图库中存储图像,请提供帮助。
onPressed: () {
isVideo = false;
_onImageButtonPressed(ImageSource.camera);
}
答案 0 :(得分:0)
这应该得到字节:
onImageButtonPressed(Future<File> futureFile) {
var file = await futureFile;
var bytes = file.readAsBytesSync();
}