0

我想在我的 C# windows 窗体项目中使用 QUICKPDF 库。我想将本地 HTMl 页面转换为 PDF 。是否可以使用 quickpdf dll 转换“本地 html”页面。

谢谢。

4

2 回答 2

1

这是使用 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);
于 2012-08-18T11:51:25.690 回答
0

你好,你可以使用这个库

http://www.essentialobjects.com/Products/EOPdf/Default.aspx

于 2012-08-18T11:46:51.200 回答