gpt4 book ai didi

c# - Xfinium : How to generate PDF with landscape orientation

转载 作者:太空宇宙 更新时间:2023-11-03 14:52:21 24 4
gpt4 key购买 nike

我正在为 Xamarin 项目使用 Xfinium pdf。 Pdf 正在纵向模式下生成。如何将 pdf 的方向更改为横向?

最佳答案

你有两个选择:

  1. 创建一个宽度大于高度的页面:

    PdfFixedDocument doc = new PdfFixedDocument();
    PdfPage page = doc.Pages.Add();
    // Create a landscape letter page
    page.Width = 792;
    page.Height = 612;
  2. 创建纵向页面并旋转它:

    PdfFixedDocument doc = new PdfFixedDocument();
    // Default page is portrait letter
    PdfPage page = doc.Pages.Add();
    // Create a landscape letter page
    page.Rotation = 90;

免责声明:我在开发 XFINIUM.PDF 库的公司工作。

关于c# - Xfinium : How to generate PDF with landscape orientation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51217654/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com