是否有将RTF转换为PDF的建议?我需要从我的LAMP应用程序中执行此操作,因此,像GhostScript这样的命令行实用程序将是理想的选择。
sudo apt-get install ted
/usr/share/ted/Ted/rtf2pdf.sh source-file dest-file
或访问此link
或者,您可以使用libreoffice来完成此任务:
libreoffice --headless --invisible --norestore --convert-to pdf source-file.rtf
在我的Ubuntu 10.4中,我有unrtf
,它“将RTF转换为HTML,LaTeX,Postscript”。在Postscript中,它应该是ps2pdf
的简单应用,以获取PDF。
在Cent OS 6下,这些步骤对我来说可以将php文件中的RTF转换为PDF:
unoconv
非常方便地执行此操作。 (仅供参考,我当前使用的是0.5-1版本)。我必须先运行unoconv --listener &
命令,然后再运行unoconv *.rtf
命令,例如...