QuickPDF库,用于将本地html页面转换为pdf

时间:2012-08-18 11:44:24

标签: c#

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

感谢。

2 个答案:

答案 0 :(得分: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);

答案 1 :(得分:0)