pdf根据页面大小进行锐利打印
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.