使用 fo.net 从文件路径获取 Xsl fo 图像
我正在尝试将图像加载到使用 fo.net 生成的 pdf 文档的标题中。
由于某种原因,我无法让 XSL 选取正确的文件路径,我已验证图像是否存在,代码为:
<fo:static-content flow-name="xsl-region-before">
<fo:block padding-top="1cm" margin-left="1cm">
<fo:external-graphic src="url('C:\\Projects\\Reports\\frontbanner960_2.jpg')" />
</fo:block>
</fo:static-content>
I am trying to load an image into the header for my pdf document which is generated using fo.net.
For some reason I cannot get XSL to pick up the correct filepath, I have verified the image is present, code is:
<fo:static-content flow-name="xsl-region-before">
<fo:block padding-top="1cm" margin-left="1cm">
<fo:external-graphic src="url('C:\\Projects\\Reports\\frontbanner960_2.jpg')" />
</fo:block>
</fo:static-content>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C:\\Projects\\Reports\\frontbanner960_2.jpg
不是正确的 URL。请尝试使用
file:///C:/Projects/Reports/frontbanner960_2.jpg
来代替。C:\\Projects\\Reports\\frontbanner960_2.jpg
is not a proper URL.Try
file:///C:/Projects/Reports/frontbanner960_2.jpg
instead.