How to display images in Word generated from HTML?
You can use this html-docx.js
You just have to call htmlDocx.asBlob("YOUR HTML")
Link to sample html to doc generation with image.
That's a tough one, Word isn't able to handle data:
base64 encoded images in HTML, at least that's the outcome in this question and this MSDN discussion.
You have three options:
Create a folder in the location of the document, store it alongside the document, and reference images relatively (
<img src='imageFolder/image1.jpg'>
)Work with absolute URLs or file paths (even more sucky)
Look into the new Word > 2003 XML based file format(s), it is definitely possible there.
The only other option I can think of is actually creating a native Word file, e.g. using OpenOffice.