I am using Office Open XML and I have to add images at a specific points. On the document I have a \'tag\' so I can locate it just fine. However, when I add more than one image, it corrupts the file.
\n\n\n\nHere\'s my code: (Modified from https://msdn.microsoft.com/en-us/library/office/bb497430.aspx)
\n\nUsing:
\n\nusing DocumentFormat.OpenXml.Wordprocessing;\nusing A = DocumentFormat.OpenXml.Drawing;\nusing DW = DocumentFormat.OpenXml.Drawing.Wordprocessing;\nusing PIC = DocumentFormat.OpenXml.Drawing.Pictures;\nRun Code Online (Sandbox Code Playgroud)\n\nMy Main:
\n\nprivate const string Loc = @"D:\\Documents\\2-Mass Output.docx";\nstatic void Main(string[] args)\n{\n var …Run Code Online (Sandbox Code Playgroud)