我有以下简单的HTML页面:
<html>
<head>
<title></title>
</head>
<body>
<div>
<img id="image" src="data:image/gif;base64,R0lGODlhFwAPAKEAAP///wAAAMzMzLi3tywAAAAAFwAPAAACQIyPqQjtD98RIVpJ66g3hgEYDdVhjThyXSA4aLq2rgp78hxlyY0/ICAIBhu/HrEEKIZUyk4R1Sz9RFEkaIHNFgAAOw==" />
</div>
</body>
</html>
我试图让PDF使用以下内容呈现Base64编码的GIF:
public static byte[] HTMLToPDF(string htmlText)
{
Process p;
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = HttpContext.Current.Server.MapPath("~/App_Data/wkhtmltopdf/wkhtmltopdf.exe");
// run the conversion utility
psi.UseShellExecute = false;
psi.CreateNoWindow = true;
psi.RedirectStandardInput = true;
psi.RedirectStandardOutput = true;
psi.RedirectStandardError = true;
// note: that we tell wkhtmltopdf to be quiet and not run scripts
string args = "-q -n ";
args += "--disable-smart-shrinking ";
//args += "--orientation Landscape ";
args += "--outline-depth 0 ";
args += "--page-size A4 ";
args += " - -";
psi.Arguments = args;
p = Process.Start(psi);
try
{
using (StreamWriter stdin = p.StandardInput)
{
stdin.AutoFlush = true;
stdin.Write(htmlText);
}
//read output
byte[] buffer = new byte[32768];
byte[] file;
using (var ms = new MemoryStream())
{
while (true)
{
int read = p.StandardOutput.BaseStream.Read(buffer, 0, buffer.Length);
if (read <= 0)
break;
ms.Write(buffer, 0, read);
}
file = ms.ToArray();
}
p.StandardOutput.Close();
// wait or exit
p.WaitForExit(60000);
// read the exit code, close process
int returnCode = p.ExitCode;
p.Close();
if (returnCode == 0)
return file;
}
catch (Exception ex)
{
}
finally
{
p.Close();
p.Dispose();
}
return null;
}
然而,当PDF显示图像不存在时(只是一个小盒子)我做错了什么?
答案 0 :(得分:2)
我有这个问题。 html内容将通过chrome渲染很好,但通过wkhtmltopdf它不会。
这是因为我在base64字符串中的标题项之间有空格。
应该是:
data:[<media type>][;charset=<character set>][;base64],<data>
我有
data: [<media type>][; charset=<character set>][; base64], <data>
Wkhtmltopdf显然比铬更严格。不要在base64标题中添加空格。
答案 1 :(得分:1)
我升级到最新版本的WKHTMLTOPDF,修复了这个问题:
答案 2 :(得分:1)
对我来说,这是img标签样式的max-width和max-height属性。删除它们后,pdf中显示了base64图像