我试图在C#中的PDFsharp中将页面宽度和高度设置为4x6。我使用以下内容:
page.Width =" 4in&#34 ;; page.Height =" 6in&#34 ;;
仍默认为8X11页。
答案 0 :(得分:3)
以下代码对我有用:
PdfPage page = document.AddPage();
page.Width = "4in";
page.Height = "6in";
使用
pdfPage.Width = XUnit.FromInch(4);
pdfPage.Height = XUnit.FromInch(6);
更好,因为它避免了运行时的字符串解析,但字符串版本也在工作。
答案 1 :(得分:0)
能够找到答案,这里是将页面格式化为4X6英寸的代码:
pdfPage.Width = XUnit.FromInch(4);
pdfPage.Height = XUnit.FromInch(6);