我想转换和上传签名图像到rest服务器,以及如何能够上传到rest服务器。我尝试转换为文件,但得到此错误here is my code
发布于 2021-04-20 18:10:25
您可以尝试将其显示在小部件中
Image.memory(your_uin8listBytes)或
MemoryImage(your_uin8listBytes)如果要将uin8list发送到firebase存储,则可以使用
putData(your_uin8listBytes)而不是
putFile(File)并设置元数据
SettableMetadata(contentType: 'image/$fileType')发布于 2021-04-21 13:32:01
要将uint8List上传到REST服务器,可以使用
MultipartFile.fromBytes(String field, List<int> value, {String? filename, MediaType? contentType})了解更多信息:visit here
https://stackoverflow.com/questions/67176365
复制相似问题