开发者

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

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.

Closed 9 years ago.

Improve this question

I am writing a converter for an old db app which contains a la开发者_开发问答rge amount of user entered RTF text. Ideally, the RAW RTF should be converted to HTML for display in a browser.

I have tried rtfparseclass from PHP Classes, which works ok, but seems to be thrown off but some of the embedded font definitions. For example, raw RTF like {\f1\fnil Tahoma;} always truncates the output produced by the parser, causing detail to be lost. I don't know RTF well enough to know if that should be valid or not. The class was last updated in 2004 so I'm guessing that it may just be out of date.

Other than updating rtfparseclass to ignore the fonts, does anyone know of a PHP library to convert RTF to HTML?


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).


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);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜