Reputation: 2958
I am using Windows Application to develop my project. There is one case, in which i need to convert RTF file to HTML and printing it. In the RTF file containing images also. In simple i can convert RTF to HTML. But images cant convert. it not there in the HTML file.
So can anyone give some idea regarding same that how can i do convert RTF file data including Images to HTML file?
Thanks in Advance.
Upvotes: 2
Views: 1852
Reputation: 109613
In HTML you can embed an image as Base64 encoded. See here, with a data:
URL. How the binary bytes can easily be converted to Base64 ASCII I do not know.
Upvotes: 4