在 Perl 中,如何使用 XML 文件中的数据生成 PDF 文件?
我有存储在哈希中的 xml 标签,如下所示。
$var1={
'stud.xml'={
'24'=>'<address>
<streetname="xxxx"/>
<housenum="138"/">
</address>'
'20'=>'<address>
<streetname="xxxx"/>
<housenum="110"/">
</address>'
}...........
现在我需要使用 perl 脚本将其转换为 pdf。我搜索后发现 PDF::API2 是转换为 pdf 的最佳模块。阅读模块后,我可以创建新的 pdf 文件并设置一些设置,如字体、格式等......但我不明白如何将此 xml 数据处理为 pdf。
Possible Duplicate:
How can I produce a PDF file using data in an XML file, in Perl?
I have xml tags that stored in a hash as shown below.
$var1={
'stud.xml'={
'24'=>'<address>
<streetname="xxxx"/>
<housenum="138"/">
</address>'
'20'=>'<address>
<streetname="xxxx"/>
<housenum="110"/">
</address>'
}...........
now I need to convert into pdf by using perl script. I searched and I found PDF::API2 is best module to convert into pdf. After reading module I am able to create new pdf file and set some settings like font, format,like....but I can't understand how to process this xml data into pdf.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个 LaTeX 模板,使用数据填充该模板,然后在其上运行
pdflatex
。请注意,您发布的 XMLish 内容没有帮助。发布实际的 XML 或 Perl 数据结构。
这是一个例子:
Create a LaTeX template, populate the template using the data, and then run
pdflatex
on it.Note that the XMLish thing you posted is not helpful. Either post the actual XML or the Perl data structure.
Here is an example: