Free (preferably) PHP RTF to HTML converter? [closed]

跟風遠走 提交于 2019-11-28 10:34:32

Have a look here: http://freshmeat.net/projects/rtf2htm/

The RTF to HTML convertor converts RTF files (in Windows-1250 encoding) to HTML file (in ISO-8859-2 encoding).

misfit

According to the answer of https://stackoverflow.com/a/4047420/1875208

Little bit late but this one works only with commandline-execution, such as exec();

You need at least provide 3 parameters:

  1. Path to rtf2htm on your server
  2. Path of the rtf-document (yes, you´ll need to save it to a file before)
  3. Filepath to where the converted html should be outputted.

It could then look like this:

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