请帮助我,我已经保存在sqlite图像Uint8List作为文本在数据库中,现在我想显示它,我不知道如何与未来的建设者获取.我有DBHElper与功能,但不知道如何获得该图像,并显示它与FutureBuilder.Flutter
getFromGallery(ImageSource source) async {
final ImagePicker imagePicker = ImagePicker();
XFile? file = await imagePicker.pickImage(source: source);
if (file != null) {
return await file.readAsBytes();
}
}
void selectImage() async {
Uint8List imageFile = await getFromGallery(ImageSource.gallery);
setState(() {
_image = imageFile;
});
}
这是将图像保存到sqlite的函数
2条答案
按热度按时间o75abkj41#
保存为类似文本
并转换回
gfttwv5a2#
在此示例中,假设DBHelper具有一个名为getImage的方法,该方法接受imageId参数并返回一个Future,该Future从数据库中检索图像数据。ImageDisplayWidget接受imageId参数并使用FutureBuilder异步检索和显示图像数据。