获取PDF的纸张大小

时间:2016-10-12 15:01:28

标签: c# pdfsharp

我正在使用PDFsharp在我们的应用程序中读/写PDF。我试图在页面元数据窗口中显示页面的纸张大小。我使用以下代码来做同样的事情:

      // read PDF document into memory
      var pdfDocument = PdfReader.Open(pdfPath);

      // if PDF document has more than one page, then try to get the page size from first page
      if (pdfDocument.Pages.Count > 0)
      {
        var pageSize = pdfDocument.Pages[0].Size.ToString();
      } // if

但每次它返回' Undefined',我甚至尝试为MS Word创建A4页面文档。但它仍然会返回' Undefined'。

我还从HTML创建了一个PDF,但页面大小也未定义。

static void Main(string[] args)
    {
      // create PDF config to generate PDF
      var config = new PdfGenerateConfig()
                   {
                     PageSize = PageSize.Letter,
                     PageOrientation = PageOrientation.Landscape
                   };

      // load the HTML file
      var html = System.IO.File.ReadAllText(@"C:\Users\mohit\Desktop\Temp\Ekta\Test.html");

      // generate the PDF
      var pdf = PdfGenerator.GeneratePdf(html,
                                         PageSize.Letter);

      // get the paper size of first page
      var size = pdf.Pages[0].Size;

      // save the pdf document
      pdf.Save(@"C:\Users\mohit\Desktop\Temp\Ekta\A13.pdf");

      Console.ReadKey();
    }

1 个答案:

答案 0 :(得分:0)

您必须使用的属性是AppBarWidth。如果您不想以磅为单位显示大小,请将它们转换为毫米或英寸。

属性Height是为新页面设置标准页面大小的便捷方式,因为您可以指定A4或Letter。它不会为导入的PDF文件设置。