Save Open XML as PDF

只愿长相守 提交于 2019-11-26 23:07:22

问题


As part of an investigation into enterprise level server side document generation I have come across Open XML.

  1. For those that have used this, how successful were you? Would you recommend it?
  2. Can you save the OpenXML to PDF directly or would I need to make use of a 3rd party component?
  3. If a 3rd Party component is required, which one did you use and which one would you recommend?

Thanks

Gineer


回答1:


The nice thing about the Office OpenXML is that it's the language of Microsoft Office -- if you live your "office life" in Word and Excel (2007 and later), that's the format you want.

Can you "save" OpenXML directly to PDF? No, it needs to be rendered by some third-party component.

If you're doing document generation on the server side and you don't need to be working with Office documents as output, you'd generally use something like iText or iTextSharp, which would render the PDFs directly.

I haven't worked with a server-side component that will do the translation from Office OpenXML to PDF, though.




回答2:


Call me biased, as I worked on this component, but the PDF Conversion Services are used by many small and large organisations to convert OpenXML as well as many other formats to PDF using a friendly Web Services interface.

Check out these examples:

  • C# / .NET
  • Java



回答3:


There are various third party components for the OpenXML to PDF piece. I maintain the open source docx4j, which is one option.

If you are doing document generation, you may find you need repeats and conditionals. For suggestions on how to do this, see http://dev.plutext.org/svn/docx4j/trunk/docx4j/sample-docs/databinding/conventions.html



来源:https://stackoverflow.com/questions/3651880/save-open-xml-as-pdf

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!