Flutter pdf 包是不是满足所有 a4 格式?
Posted
技术标签:
【中文标题】Flutter pdf 包是不是满足所有 a4 格式?【英文标题】:Flutter pdf packe fullfill all the a4 format?Flutter pdf 包是否满足所有 a4 格式? 【发布时间】:2022-01-23 11:50:00 【问题描述】:我正在使用 Flutter pdf 插件。这是我的代码:
pdf.addPage(pw.Page(
pageFormat: PdfPageFormat.a4,
build: (pw.Context contex)
return pw.Image(image,fit:pw.BoxFit.fill);//pw.Container(
//child:
//pw.Image(image,fit:pw.BoxFit.fill));
));
问题是我想让图片满足所有的pdf页面。
但它看起来像这样:
边缘有空格。
【问题讨论】:
【参考方案1】:我使用了 FullPage,它成功了。
pdf.addPage(pw.Page(
pageFormat: PdfPageFormat.a4,
build: (pw.Context contex)
return pw.FullPage(
ignoreMargins: true,
child: pw.Image(image,fit: pw.BoxFit.fill),
);
//pw.Container(
//child:
//pw.Image(image,fit:pw.BoxFit.fill));
));
【讨论】:
以上是关于Flutter pdf 包是不是满足所有 a4 格式?的主要内容,如果未能解决你的问题,请参考以下文章