rtf format to pdf

前端 未结 4 545
甜味超标
甜味超标 2021-01-06 08:49

Is there any way to convert rtf format to pdf using PHP?

Thanks

4条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-06 09:24

    If you want to stick with pure PHP, you can probably use HTML as an intermediary:

    1. Convert RTF to HTML
      http://freshmeat.net/projects/rtf2htm/ , http://www.phpclasses.org/package/1930-PHP-RTF-to-HTML-converter-with-latin-character-support.html
    2. Optionally: clean up the HTML
      http://htmlpurifier.org/
    3. Convert HTML to PDF
      http://dompdf.github.io/

提交回复
热议问题