/hg/gfx-test: Javadoc for the method diffImages.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Mar 22 12:51:14 UTC 2016
changeset 38e1f8d55fde in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=38e1f8d55fde
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Mar 22 13:55:37 2016 +0100
Javadoc for the method diffImages.
diffstat:
ChangeLog | 5 +++++
src/org/gfxtest/ImageDiffer/ImageComparator.java | 11 +++++++++++
2 files changed, 16 insertions(+), 0 deletions(-)
diffs (54 lines):
diff -r ab44756e58f8 -r 38e1f8d55fde ChangeLog
--- a/ChangeLog Mon Mar 21 11:18:24 2016 +0100
+++ b/ChangeLog Tue Mar 22 13:55:37 2016 +0100
@@ -1,3 +1,8 @@
+2016-03-22 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/ImageDiffer/ImageComparator.java:
+ Javadoc for the method diffImages.
+
2016-03-21 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/ImageDiffer/ImageComparator.java:
diff -r ab44756e58f8 -r 38e1f8d55fde src/org/gfxtest/ImageDiffer/ImageComparator.java
--- a/src/org/gfxtest/ImageDiffer/ImageComparator.java Mon Mar 21 11:18:24 2016 +0100
+++ b/src/org/gfxtest/ImageDiffer/ImageComparator.java Tue Mar 22 13:55:37 2016 +0100
@@ -94,6 +94,14 @@
g.dispose();
}
+ /**
+ * Perform the comparison of two images and generate result with arreas containing different pixel values etc.
+ *
+ * @param imageFileName
+ * @param images
+ * @param configuration
+ * @return
+ */
public ComparisonResult diffImages(String imageFileName, BufferedImage[] images, Configuration configuration)
{
Point min = new Point(Integer.MAX_VALUE, Integer.MAX_VALUE);
@@ -104,6 +112,7 @@
int differentPixels = 0;
int smallDifferences = 0;
int equalPixels = 0;
+ // new image used to draw difference(s)
BufferedImage diffImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
for (int j = 0; j < height; j++)
{
@@ -132,6 +141,7 @@
}
}
boolean equalImages = min.x == Integer.MAX_VALUE;
+ // we found at least one area with different pixels
if (!equalImages)
{
drawRectangleAroundDifferentPixels(configuration, min, max, width, height, diffImage);
@@ -141,6 +151,7 @@
min = new Point(-1, -1);
max = new Point(-1, -1);
}
+ // generate the comparison result(s)
return new ComparisonResult(imageFileName, equalImages, diffImage, min, max, width, height, totalPixels, differentPixels, smallDifferences, equalPixels);
}
More information about the distro-pkg-dev
mailing list