Hello, while doing compare between two specific pages of a document i get: java.lang.IllegalArgumentException: Cannot insert a node of this type at this location.
Code snippet to reproduce this:
Document oldFull = new Document("path/to/oldVersion.docx");
Document modFull = new Document("path/to/modVersion.docx");
Document org = oldFull.extractPages(1, 1);
Document mod = modFull.extractPages(0, 1);
//org.save("org.pdf");
org.compare(mod, "any", new Date());
What is interesting, if you uncomment org.save(“org.pdf”); everything works as expected and there’s no exception.
oldVersion.docx (28.4 KB)
modVersion.docx (23.8 KB)