I've created an application in c# where an image is开发者_如何学运维 inserted into xml by turning it into bytes. How do i then convert this image from the xml into a word document?
This article might help you:
- Inserting images into Word documents using XML
The main idea of the article is to construct a WordML
(WordProcessingML) document fragment representing the image to be inserted and then calling Word's InsertXML
function to place the image in the document.
精彩评论