我想在我的 C# windows 窗体项目中使用 QUICKPDF 库。我想将本地 HTMl 页面转换为 PDF 。是否可以使用 quickpdf dll 转换“本地 html”页面。
谢谢。
我想在我的 C# windows 窗体项目中使用 QUICKPDF 库。我想将本地 HTMl 页面转换为 PDF 。是否可以使用 quickpdf dll 转换“本地 html”页面。
谢谢。
这是使用 quickpdf 将 html 转换为 pdf 的示例
// Setup the parameters
string fileName = "C:\\example.pdf";
string licenseKey = "...";
// Create the library
QuickPDFAX0712.PDFLibrary qp = new QuickPDFAX0712.PDFLibrary();
// Unlock the library
qp.UnlockKey(licenseKey);
qp.DrawHTMLText(40, 760, 200, "Here is some <b>bold</b>, <i>italic</i> and <u>underlined</u> text");
qp.DrawHTMLText(40, 730, 200, "<ul><li>This</li><li>is</li><li>a</li><li>bullet</li><li>list</li></ul>");
// Save the new PDF that you've created.
qp.SaveToFile(fileName);