当我将html转换为pdf时如何写文件pdf

时间:2014-11-28 02:15:28

标签: asp.net wkhtmltopdf

我尝试使用服务器中的wkhtmltopdf.exe将html文件转换为pdf,然后进行处理。应用程序必须创建文件pdf。我能怎么做 ?请帮忙。

这是代码

string myDocumentsPath = "c:\\wkhtmltopdf.exe ";

ProcessStartInfo psi = new ProcessStartInfo(myDocumentsPath, " http://www.website.com/page");

psi.UseShellExecute = false;

psi.RedirectStandardOutput = true;

psi.RedirectStandardInput = true;

psi.RedirectStandardError = true;

psi.CreateNoWindow = true;

Process myProcess = Process.Start(psi);

myProcess.WaitForExit();

myProcess.Close();

0 个答案:

没有答案