【发布时间】:2021-05-20 06:56:23
【问题描述】:
图像以 base64 编码的形式存储在 sqflite 数据库中。使用此代码可以完美显示 PNG 图像。 From here
try {
bytes = base64.decode(<base64 Image String>);
image = PdfImage.file(
pdf.document,
bytes: bytes,
);
} catch (e) {
bytes = null;
image = null;
}
但不适用于 jpeg base64 编码图像。
任何帮助将不胜感激。
【问题讨论】:
标签: flutter pdf flutter-layout flutter-dependencies