pdf根据页面大小进行锐利打印

发布于 2024-11-14 07:51:06 字数 359 浏览 6 评论 0原文

我正在使用 PdfSharp dll 来打印 pdf。这是我正在使用的代码。这对我来说效果很好。

PdfFilePrinter.AdobeReaderPath = "C:\\Program Files\\Adobe\\Reader 9.0\\Reader\\AcroRd32.exe";
PdfFilePrinter printer = new PdfFilePrinter("C:\\sample.pdf", "HP LaserJet P1007");
printer.Print();

一如既往!!!! “但是”我无法将 A4 等页面大小应用于上面的代码。那么有什么方法可以让我在这里的代码中实现页面大小。

提前致谢

I am using PdfSharp dll to print a pdf. This is the code that i am using. This works fine for me.

PdfFilePrinter.AdobeReaderPath = "C:\\Program Files\\Adobe\\Reader 9.0\\Reader\\AcroRd32.exe";
PdfFilePrinter printer = new PdfFilePrinter("C:\\sample.pdf", "HP LaserJet P1007");
printer.Print();

As always!!!! "BUT" I am not able to apply page size like A4 to the above code. So is there any way that i can implement page size to the code here.

Thanks in advance

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

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

发布评论

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

评论(1

旧时浪漫 2024-11-21 07:51:06

PdfFilePrinter 启动 AcroRd32.exe 并在命令行中传递文件名和打印机名称。恐怕命令行不支持选择纸张格式或其他高级选项。

PdfFilePrinter launches AcroRd32.exe and passes file name and printer name in the command line. I'm afraid the command line does not support selection of paper format or other advanced options.

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