我无法在 Apache FOP xsl 文档中使用 Barcode4J ean-13 生成动态消息。我确实使用硬编码消息生成了条形码。但是,我想将条形码编号作为参数传递给 xsl 文档。我该怎么做呢?
此外,我已经参考了barcode4J网站的帮助页面,但没有运气。我曾尝试使用此处描述的技术,但没有运气。
这就是我的 xsl 文档的样子
<fo:block-container left="1000" top="1000"
z-index="1" position="relative">
<fo:block>
<fo:instream-foreign-object>
<bc:barcode xmlns:bc="http://barcode4j.krysalis.org/ns"
message="123456789789">
<bc:ean-13 />
</bc:barcode>
</fo:instream-foreign-object>
</fo:block>
</fo:block-container>