Hi @Conor Shore ,
In your Output.docx, the links to the image files in data1.xml.rels
file changed to remove the relative part of the link, so the paths to the images are incorrect. Add ../
before the media paths in data1.xml.rels
and it will resolve the issue with your file. For example:
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image1.png"/>
Should change to:
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="../media/image1.png"/>
Please let me know if this resolves the issue.
Best regards,
Michael