创建从 SVG 到 XSL-FO / PDF 中的块的超链接

发布于 2024-11-15 23:05:32 字数 474 浏览 2 评论 0原文

希望有人能帮助我,我被困住了。

我正在从 XML 文档(通过 XSLT2)创建一组 SVG 和 HTML 文件,并且我的 SVG 图形(使用 xlink:href)中有指向 HTML 文件的超链接。基本上,显示带有表格矩形的数据库结构,单击表格即可转到 HTML 中的说明。到目前为止一切顺利。

现在,我的客户告诉我“我需要一个交互式 PDF 文档中的所有内容”。因此,我使用另一个 XSLT 生成一个 XSL-FO 文档,其中包含用于每个表详细信息的 fo:block 和用于图表的流内 SVG。 FO 文档将通过 FOP 进一步处理以生成 PDF。

但现在,我找不到从嵌入 SVG 中的矩形引用同一文档中的 fo:block 的方法? xlink:href 需要对 的引用,那么如何指示我想要指向 fo:block id?或者是否有相当于 的内容?在 FO 中构建?

非常感谢任何帮助/提示!感谢社区。

Hope somebody can help me, I'm stuck.

I am creating a set of SVG's and HTML files from an XML doc (via XSLT2), and I have hyperlinks in my SVG graphics (with xlink:href) to the HTML files. Basically, showing a database structure with rectangles for tables, and a click on a table goes to the explanation in HTML. So far so good.

Now, my customer tells me "I need all that in a single interactive PDF doc". So using another XSLT I produce a single XSL-FO doc with fo:block's for each table details and instream SVG's for the diagrams. The FO doc will be further processed through FOP to produce the PDF.

But now, I can't find a way to refer to a fo:block in the same doc from the rectangle in the embedded SVG? xlink:href expects a reference to an <a name="">, so how to indicate that I want to point to a fo:block id? Or is there an equivalent to the <a name=""> construct in FO?

Any help/hint greatly appreciated! Thanks to the community.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一萌ing 2024-11-22 23:05:33

向 fo:block 添加一个 id 属性,它应该可以工作:

<fo:block id="foo"></fo:block>
<image xlink:href="#foo" />

Add an id attribute to the fo:block and it should work:

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