Facing similar issue in saving the docx without any modification. Some of the images or icon are missing from the docx. Below is the sample code. Attached original document screenshots and saved document screenshot with issues.
lic = aw.License()
try:
lic.set_license("C:\\Users\\AnkiRast\Aspose.WordsProductFamily.lic")
print("License set successfully.")
except RuntimeError as err:
print("\nThere was an error setting the license:", err)
# Load the document
doc = aw.Document(input_file)
doc.save("C:\\Users\\AnkiRast\\Downloads\\test_before.docx")



