Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is PDF an XML format?

I was intrigued by a question for a long time : If PDF is XML why can't I simply create a PDF document by simply adhering to XML rules by setting elements, and attributes, proper nesting ... etc?

like image 944
user10089632 Avatar asked Oct 18 '25 21:10

user10089632


1 Answers

If PDF is XML why can't I simply...

PDF is not XML.

To generate PDF from XML, use XSLT to convert the XML to XSL:FO, which can then be rendered to PDF by an XSL-FO processor such as Apache FOP, Antenna House, or RenderX.

like image 199
kjhughes Avatar answered Oct 21 '25 23:10

kjhughes