如何将相机捕获的图像转换为带有颤振的base64
Posted
技术标签:
【中文标题】如何将相机捕获的图像转换为带有颤振的base64【英文标题】:how to convert image captured with camera to base64 with flutter 【发布时间】:2020-09-22 11:19:40 【问题描述】:我想将用相机捕获的图像转换为base64,但似乎是在转换图像路径而不是图像本身,请帮助我。
File file;
final picker = ImagePicker();
void _choose() async
final pickedFile = await picker.getImage(source: ImageSource.camera);
file = File(pickedFile.path);
if (file != null)
setState(()
base64Encode(file.readAsBytesSync());
print(base64Encode(Image.file(file));
);
【问题讨论】:
【参考方案1】:错误:
print(base64Encode(Image.file(file));
对:
print(base64Encode(file.readAsBytesSync()));
【讨论】:
您能否提供有关您的代码功能的更多详细信息?以上是关于如何将相机捕获的图像转换为带有颤振的base64的主要内容,如果未能解决你的问题,请参考以下文章
在app android中上传pdf或txt并转换为base64