sumeshtg1 Posted July 2, 2009 Share Posted July 2, 2009 We have an RTF file saved in the database. If we pull the data and write it as a file, without any further processing/formatting, it should be possible to open the file in an RTF reader application, say, Wordpad. In other words, we are storing the RTF file as 'raw' data. Our plan is to bring this onto the www browser, like firefox or IE (to allow editing)and put the contents in a 'Rich Text Area' that the end user can edit the contents, without loosing the formatting. So far, we have not seen any online RTF editor, or a plug-in that is closely integrated with a browser, like Acrobat Reader in the case of PDF files. One solution is to use a Rich Text (WYSIWYG) editor that can integrate with php. In this case we need to convert the RTF on the fly to HTML and import the formatted contents to a WYSIWYG Rich Text editor. Ideally we are looking for a php class do this. After editing, the formatted (ie, bold, italic, etc. etc) content needs to be ideally converted back to RTF when the end user "Saves" it, and be stored in the database. We need the saved the document in RTF ideally, but we can live with HTML too. The difficulty is that we are getting the data initially from an external source in RTF format and we are trying to provide an online editing feature. The RTF file can contain header/footer/images in addition to styled text. Give any Suggestion? Link to comment https://forums.phpfreaks.com/topic/164499-rtf-to-html/ Share on other sites More sharing options...
Adam Posted July 2, 2009 Share Posted July 2, 2009 http://www.google.co.uk/search?q=rtf+to+html+conversion+using+php Would seem TinyMCE has built-in function for conversion. Edit: This may not be true actually, I just saw it briefly mentioned on one of the links. Link to comment https://forums.phpfreaks.com/topic/164499-rtf-to-html/#findComment-867700 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.