如何使用itextsharp库旋转pdf

发布于 2024-10-14 09:52:28 字数 34 浏览 3 评论 0原文

你好 我们如何使用 itext 库旋转 PDF。 谢谢

hi
how do we rotate PDF using itext library.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

痴骨ら 2024-10-21 09:52:28

如果您写入新的 PDF 文档,以下行将创建一个旋转的新 A4 页面(横向)

Document doc = new Document(PageSize.A4.Rotate());

If you writing to a new PDF document, the following line will create a new A4 page rotated (into landscape)

Document doc = new Document(PageSize.A4.Rotate());
似梦非梦 2024-10-21 09:52:28

这是一个非常简单的例子:

Document pdf = new Document(PageSize.A4);
PdfWriter.GetInstance(pdf, new FileStream("file.pdf", System.IO.FileMode.Create));
pdf.Open();
pdf.Add(new Paragraph("This is a pdf document!"));
pdf.Close();

编辑:我的错误,我读了“如何创建 pdf ...”。这就是上面的例子所做的。对不起。

This is a very simple example:

Document pdf = new Document(PageSize.A4);
PdfWriter.GetInstance(pdf, new FileStream("file.pdf", System.IO.FileMode.Create));
pdf.Open();
pdf.Add(new Paragraph("This is a pdf document!"));
pdf.Close();

Edit: My mistake, I read "how to create pdf ...". That is what the example above does. I am sorry.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文