4

I have a fillable pdf template. Also have a xml file which is extracted from this fillable pdf file.

How can I export xml file from these fillable pdf files and also how can I create a normal pdf file from the the xml files or how can I import the xml files to these fillable xml files? I'm new in these things.

Radu Rădeanu
  • 166,822
  • 48
  • 327
  • 400
OmaL
  • 261
  • 3
  • 8

1 Answers1

0

You can use XSLT to transform XML to PDF, or any other format. The procedure is to run the XML file through a XSLT Transformer using a stylesheet. The stylesheet can contain operations on XML nodes, as well as other content elements. An XSLT Transformer can be a stand-alone program, or built into an XML editor, and one is even integrated in your common browser.
You can find plenty of XSLT tutorials around the web.

Jos
  • 28,156
  • 8
  • 82
  • 88