/hg/gfx-test: Added two new helper methods into ImageFactory class.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Feb 4 08:24:10 PST 2013
changeset 6388bd700344 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=6388bd700344
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Feb 04 17:27:13 2013 +0100
Added two new helper methods into ImageFactory class.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/framework/ImageFactory.java | 83 +++++++++++++++++++++++++++++
2 files changed, 88 insertions(+), 0 deletions(-)
diffs (105 lines):
diff -r 9c7ac29d5ebe -r 6388bd700344 ChangeLog
--- a/ChangeLog Thu Jan 31 09:56:58 2013 +0100
+++ b/ChangeLog Mon Feb 04 17:27:13 2013 +0100
@@ -1,3 +1,8 @@
+2013-02-04 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/ImageFactory.java:
+ Added two new helper methods into ImageFactory class.
+
2013-01-31 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/Paths.java:
diff -r 9c7ac29d5ebe -r 6388bd700344 src/org/gfxtest/framework/ImageFactory.java
--- a/src/org/gfxtest/framework/ImageFactory.java Thu Jan 31 09:56:58 2013 +0100
+++ b/src/org/gfxtest/framework/ImageFactory.java Mon Feb 04 17:27:13 2013 +0100
@@ -1143,6 +1143,89 @@
// return buffered image containing computed color pattern
return image;
}
+
+ /**
+ * Create image containing yellow gradient.
+ *
+ * @param width
+ * width of a buffered image
+ * @param height
+ * height of a buffered image
+ * @param imageType
+ * buffered image type
+ * @return buffered image containing checker pattern
+ */
+ public static BufferedImage createHorizontalYellowGradientImage(int width, int height, int imageType)
+ {
+ // check for proper image dimensions
+ if (width <= 0 || height <= 0)
+ {
+ return null;
+ }
+
+ // create new image
+ BufferedImage image = new BufferedImage(width, height, imageType);
+
+ // for all lines in a raster image
+ for (int y = 0; y < height; y++)
+ {
+ // compute color for each pixel
+ int rgb = (int) Math.round(y * 256.0 / height);
+ if (rgb < 0) rgb = 0;
+ if (rgb > 255) rgb = 255;
+ int color = (0xff << 24) | (rgb << 16) | (rgb << 8);
+ // for all columns on a line
+ for (int x = 0; x < width; x++)
+ {
+ image.setRGB(x, y, color);
+ }
+ }
+
+ // return buffered image containing computed color pattern
+ return image;
+ }
+
+ /**
+ * Create image containing yellow gradient.
+ *
+ * @param width
+ * width of a buffered image
+ * @param height
+ * height of a buffered image
+ * @param imageType
+ * buffered image type
+ * @return buffered image containing checker pattern
+ */
+ public static BufferedImage createVerticalYellowGradientImage(int width, int height, int imageType)
+ {
+ // check for proper image dimensions
+ if (width <= 0 || height <= 0)
+ {
+ return null;
+ }
+
+ // create new image
+ BufferedImage image = new BufferedImage(width, height, imageType);
+
+ // for all lines in a raster image
+ for (int y = 0; y < height; y++)
+ {
+ // for all columns on a line
+ for (int x = 0; x < width; x++)
+ {
+ // compute color for each pixel
+ int rgb = (int) Math.round(x * 256.0 / width);
+ if (rgb < 0) rgb = 0;
+ if (rgb > 255) rgb = 255;
+ int color = (0xff << 24) | (rgb << 16) | (rgb << 8);
+ image.setRGB(x, y, color);
+ }
+ }
+
+ // return buffered image containing computed color pattern
+ return image;
+ }
+
/**
* Create image containing red to blue gradient.
*
More information about the distro-pkg-dev
mailing list