I also posted this message on stackoverflow: [click here](http://stackoverflow.com/questions/23514781/add-image-to-word-docx-using-npoi-library-c-sharp)
I want to add an image to a XWPFDocument. I've created a memoryStream containing the image. (which is correct because If I render the base64 string from it, this is correct).
But if I add the image with the following code:
```
XWPFParagraph p2 = wordDoc.CreateParagraph();
XWPFRun r2 = p2.CreateRun();
r2.AddPicture(pictureData, (int)PictureType.PNG, "image1", 800, 600);
```
this results in the following error when I download the document:
> “The file <document filename> cannot be opened because there are problems with the contents”
So my question is, what am I missing, what am I doing wrong? Couldn't find any documentation about images into a XWPF document.
Comments: ** Comment from web user: tonyqus **
I want to add an image to a XWPFDocument. I've created a memoryStream containing the image. (which is correct because If I render the base64 string from it, this is correct).
But if I add the image with the following code:
```
XWPFParagraph p2 = wordDoc.CreateParagraph();
XWPFRun r2 = p2.CreateRun();
r2.AddPicture(pictureData, (int)PictureType.PNG, "image1", 800, 600);
```
this results in the following error when I download the document:
> “The file <document filename> cannot be opened because there are problems with the contents”
So my question is, what am I missing, what am I doing wrong? Couldn't find any documentation about images into a XWPF document.
Comments: ** Comment from web user: tonyqus **
The generated openxml is wrong. It will be fixed in NPOI 2.1.