Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过单击链接强制从浏览器打印 PDF。它在这里说使用 PDF 工具包嵌入 javascript 可以使这成为可能,所以有人知道是否/如何使用 Aspose 来完成吗?
找到了答案,非常简单,而且很享受!(您也可以在 OpenPdfFile 中使用流而不是路径名)
//create PdfViewer object PdfViewer viewer = new PdfViewer(); //open input PDF file viewer.OpenPdfFile(@"c:\input.pdf"); //print PDF document viewer.PrintDocument(); //close PDF file viewer.ClosePdfFile();