I have many RTF documents storend in my database. I'm trying to create a webpage to render an RTF document as an image. Any ideas on how to do this?
Asked
Active
Viewed 1,645 times
3 Answers
0
You can try printing to a Virtual Image Printer and then serve the image it produced.

Anton Gogolev
- 113,561
- 39
- 200
- 288
0
See this project
http://sourceforge.net/projects/rtf2html/ (Also cf. http://www.w3.org/Tools/HTMLGeneration/rtf2html.html)
Also see this question answered a year ago:
It includes a C# option on codeproject
0
The easier way is convert RTF to HTML instead of image, because of:
- Image is a raster and will look different in various monitors
- Image has more size (kb) than HTML
- Converting to Image in even case slower than to HTML

Maxim Sautin
- 133
- 5