Aspose.Words identifies changes that were not made upon comparing

@alexey.noskov while comparing the .doc files below, Aspose output .doc file is identifying changes that were not made.

Please check the zip file below, which contains the input documents and outputs generated by both Aspose and MS Word. In the Aspose output, it is identifying format changes on the table on page 3, which were intact in both the source and target documents.

DocFileChecks.zip (157.1 KB)

@Kldv I cannot reproduce the problem on my side using the latest 25.3 version of Aspose.Words and the following simple code:

Document v1 = new Document("C:\\Temp\\v1.doc");
Document v2 = new Document("C:\\Temp\\v2.doc");
v1.compare(v2, "AW", new Date());
v1.save("C:\\Temp\\out.doc");

Here is the produced output: out.zip (35.2 KB)

As I can see you are using 25.2 version on your side. Please try updating and let us know if the problem still persists.

Thanks for checking this @alexey.noskov, sure I will bump up the version and check

1 Like

I just checked it, comparison is working fine with v25.3

1 Like