我想预览PDF文件。
我在C#中使用iTextSharp
来生成PDF
文件。
如何在打印之前为preview
PDF文件创建函数。
我在preview
iTextSharp
答案 0 :(得分:1)
我确实找到了我的问题的答案,我希望与所有人分享。
因此,我使用Windows.Data.Pdf库创建了一个个人查看器。
答案 1 :(得分:0)
我只是打开通过保存它打开它然后检查它是否打开以及它是否打开不再删除它。
Document doc = new Document(iTextSharp.text.PageSize.A4, 10, 10, 20, 10);
PdfWriter wri = PdfWriter.GetInstance(doc, new FileStream("submitted.pdf", FileMode.Create));
doc.Open();
// do your generating code here
doc.Close();
System.Diagnostics.Process.Start("filepath\\submitted.pdf");
System.IO.File.Delete("filepath\\submitted.pdf");