我目前正在使用带有 c# 的 wkhtmltopdf 将我的网页下载为 PDF 格式。但是,我希望生成的 PDF 显示为使用“print.css”。
其他详细信息:我使用的是 microsoft visual studio 2010。
这是我的代码:
protected void ImageButton2_Click(object sender, ImageClickEventArgs e)
{
string args = string.Format("\"{0}\" - ", Request.Url.AbsoluteUri);
var startInfo = new ProcessStartInfo(Server.MapPath("~/wkhtmltoPDF/") + "wkhtmltopdf.exe", args)
{
UseShellExecute = false,
RedirectStandardOutput = true
};
var proc = new Process { StartInfo = startInfo };
proc.Start();
Response.AddHeader("Content-Disposition", string.Format("attachment;filename=StaffDetails.pdf", Guid.NewGuid()));
Response.AddHeader("Content-Type", "application/pdf"); string output = proc.StandardOutput.ReadToEnd();
byte[] buffer = proc.StandardOutput.CurrentEncoding.GetBytes(output);
proc.Close();
Response.BinaryWrite(buffer);
}
}