I am trying to develop a program which would take the snapshot of webpage and will then compare it to an old one and highlight the changes if any.
I am using Selenium- WebDriver for taking snapshots. For image processing and compare, after a bit googling I found jMagick, a Java interface for ImageMagick, which I think would be best fit for my requirement.
But due to lack of proper documentation, I am not able to find anything relevant. If anyone could help me out with any code sample for image comparision that would be really helpful.
Again, the problem is to compare two images and highlight the changes or the differences between the two. Output could be a third image with differences highlighted.
Possible duplicates for this are : this and this . But again, no proper solution could be infer from these.
Please if somebody could throw some light on this or may be some other solution in java that would work out.