使用TuesPechkin渲染本地图像
本文关键字:地图 图像 TuesPechkin 使用 | 更新日期: 2023-09-27 18:04:19
我正在尝试使用TuesPechkin生成文档,到目前为止,当涉及到URL图像时,它的工作完美无缺。然而,当涉及到本地图像时,它似乎根本不生成图像,如下所示:
https://i.stack.imgur.com/UVjjr.jpg文档生成:
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>
是否有一个正确的方法来生成图像,如果它的本地?
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从哪个目录运行,并尝试提供相对于该目录的链接。