Worried! What’s the difference? Better automate the photo comparison. In this article, we will discuss how to programmatically find differences between two images. After going through this, you will find it easy to compare any images and highlight the identified differences using Java.

Identical Images for comparison

The following topics are covered below:

Images Comparison Java API

In this article, I will be using the Java API of GroupDocs.Comparison for comparing images. Along with the most used image formats, like PNG, JPG/JPEG, and GIF, there is a wide range of supported file formats for comparison. Additionally, the API allows the compare word-processing documents, spreadsheets, presentations, drawings, webpages, email messages, source code files, and much more.

Download and Configure

Get the image comparison library from the downloads section. For Maven-based Java applications, add the following configuration within pom.xml. Later, you can try the examples of this article as well as many more from GitHub. For the details, you may also visit the API Reference.

<repository>
	<id>GroupDocsJavaAPI</id>
	<name>GroupDocs Java API</name>
	<url>http://repository.groupdocs.com/repo/</url>
</repository>
<dependency>
        <groupId>com.groupdocs</groupId>
        <artifactId>groupdocs-comparison</artifactId>
        <version>21.6</version> 
</dependency>

Compare Images in Java to Highlight Differences

Comparing the images and get the result is just 3 lines of code. You can follow the steps and use the mentioned source code for comparing any of your JPG, PNG, BMP, DICOM, DjVu, GIF, and other images. You can identify the dissimilarities or variations among these within the Java application.

The following steps show how any two images can be compared for differences.

  • Select the first image to compare using the Comparer class.
  • Add the second image for comparison using the appropriate add method.
  • Call the compare method to get the comparison result of both the images.

The following code shows how to compare two images in Java. It compares two JPG images and saves the output that highlights the identified differences.

Here is the output image of the above code. Additionally, the output also includes the summary of the comparison.

Image comparison automated and highlighted the differences

Get a Free API License

You can get a free temporary license in order to use the API without the evaluation limitations.

Conclusion

To conclude from this article, we learned to compare images in Java. We further highlighted the identified differences after the comparison. Now you can build your own photo comparer app or use these features within your Java applications.

For more details, options, and examples, you can go through the documentation and GitHub repository. Reach us on the forum for your queries.

See Also