Word to markdown image lost

I executed the following code to convert Word into a markdown document, but there were five images in the document, only one was converted, and the resulting markdown document only displayed the same image. What is the problem.
test.zip (134.2 KB)

@zhengkai I cannot reproduce the problem on my side using the latest 24.10 version of Aspose.Words for java and the following simple code:

Document doc = new Document("C:\\Temp\\in.docx");
doc.save("C:\\Temp\\out.md");

out.zip (58.2 KB)