Flutter pdf 包是否满足所有 a4 格式?

Flutter pdf packe fullfill all the a4 format?

我正在使用 flutter pdf plugin.This 是我的代码:

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页面。

但看起来像这样:

边缘周围有空格。

我使用了 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));
              }));