【发布时间】:2019-11-15 17:23:43
【问题描述】:
Used Library: dart_pdf 搜索后我在GITHUB 中发现了同样的问题,但无法解决问题。我试过了,但出现了模糊的图像。请帮忙!!
ByteData data = await rootBundle.load('assets/test.jpg');
var codec = await instantiateImageCodec(data.buffer.asUint8List());
var frame = await codec.getNextFrame();
var imageBytes = await frame.image.toByteData();
PdfImage assetImage = PdfImage(pdf.document,
image: imageBytes.buffer.asUint8List(), width: 86, height: 80);
渲染图像:
【问题讨论】:
标签: pdf flutter dart pdf-generation flutter-layout