使用 fo.net 从文件路径获取 Xsl fo 图像

发布于 2024-11-08 21:15:43 字数 368 浏览 3 评论 0原文

我正在尝试将图像加载到使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分开我的手 2024-11-15 21:15:43

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文