我正在尝试使用TuesPechkin生成文档,到目前为止,它在URL图像方面完美运行。但是,当谈到本地图像时,它似乎根本不会生成图像:
文件生成:
public static void ConvertDoc(String html)
{
var document = new HtmlToPdfDocument
{
GlobalSettings =
{
ProduceOutline = true,
DocumentTitle = "Form documents",
Margins =
{
Top = 1.8,
Left = 2.5,
Right = 2.5,
Bottom = 2.5,
Unit = Unit.Centimeters
}
},
Objects =
{
new ObjectSettings { HtmlText = html,
WebSettings = new WebSettings() {
LoadImages = true
}
}
}
};
IConverter converter = new ThreadSafeConverter(
new PdfToolset(
new Win32EmbeddedDeployment(
new TempFolderDeployment())));
byte[] result = converter.Convert(document);
File.WriteAllBytes("C:/Users/jmann_000/Desktop/Test/program-test-2015.pdf", result);
}
}
}
如上所示,我也尝试将加载图像设置为true,但这不起作用。 有问题的Html:
<td>
<table border="0" cellpadding="0" cellspacing="0" class="doc-header">
<tr>
<td width="300" align="left"><img src="img/logo.gif" width="240" alt="AeroCare"></td>
<td width="375"></td>
</tr>
</table>
</td>
是否有正确的方法来生成图像,如果它的本地?
答案 0 :(得分:2)
wkhtmltopdf未与根项目在同一文件夹中运行,因此对于wkhtmltopdf,任何相对于项目的路径都不正确。
这会产生相对图像和css样式表的问题。 在任何情况下,您都需要提供文件的完全限定路径。
解决方案1
对于MVC和Razor
是提供托管应用程序的完整路径,以便从主机获取文件。
@String root = http://localhost:port/
<img src="@String.Format("{0}img/logo.gif",root)" width="240" alt="AeroCare">
解决方案2
使用文件系统路径获取文件。
@String root = @HostingEnvironment.MapPath("~");
如果您正在运行控制台应用程序,请替换为
String root = AppDomain.CurrentDomain.BaseDirectory;
但是你需要一个引擎来用完全限定的路径替换HTML文件中的所有链接。
解决方案3
找出wkhtmltopdf正在运行的目录,并尝试提供相对于该目录的链接。