rtf format to pdf
pdf, pdf-generation, php, rtf
Solution
If you want to stick with pure PHP, you can probably use HTML as an intermediary:
- 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
- Optionally: clean up the HTML http://htmlpurifier.org/
- Convert HTML to PDF http://dompdf.github.io/
Problem
Is there any way to convert rtf format to pdf using PHP? Thanks