/hg/gfx-test: 2012-02-02 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Feb 2 02:57:09 PST 2012
changeset 5bdebda6f7e5 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=5bdebda6f7e5
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Feb 02 11:59:31 2012 +0100
2012-02-02 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/framework/CommonBitmapOperations.java:
Improved JavaDoc.
* src/org/gfxtest/framework/ImageFactory.java: New
functionality of image renderer: small labels are printed to
the generated pattern to be easy to check if image flipping
is working correctly.
diffstat:
ChangeLog | 9 +
src/org/gfxtest/framework/CommonBitmapOperations.java | 226 +++++++++++++++++-
src/org/gfxtest/framework/ImageFactory.java | 52 ++++
3 files changed, 278 insertions(+), 9 deletions(-)
diffs (truncated from 517 to 500 lines):
diff -r 49ff22218b59 -r 5bdebda6f7e5 ChangeLog
--- a/ChangeLog Wed Feb 01 10:28:44 2012 +0100
+++ b/ChangeLog Thu Feb 02 11:59:31 2012 +0100
@@ -1,3 +1,12 @@
+2012-02-02 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/CommonBitmapOperations.java:
+ Improved JavaDoc.
+ * src/org/gfxtest/framework/ImageFactory.java:
+ New functionality of image renderer: small labels are
+ printed to the generated pattern to be easy to check
+ if image flipping is working correctly.
+
2012-02-01 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/framework/CommonBitmapOperations.java:
diff -r 49ff22218b59 -r 5bdebda6f7e5 src/org/gfxtest/framework/CommonBitmapOperations.java
--- a/src/org/gfxtest/framework/CommonBitmapOperations.java Wed Feb 01 10:28:44 2012 +0100
+++ b/src/org/gfxtest/framework/CommonBitmapOperations.java Thu Feb 02 11:59:31 2012 +0100
@@ -149,7 +149,7 @@
}
/**
- * Create new buffered image and then do basic BitBlt test.
+ * Create new buffered image and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -171,7 +171,7 @@
}
/**
- * Create new buffered image containing checker pattern and then do basic BitBlt test.
+ * Create new buffered image containing checker pattern and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -194,7 +194,7 @@
}
/**
- * Create new buffered image containing checker pattern and then do basic BitBlt test.
+ * Create new buffered image containing checker pattern and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -202,6 +202,10 @@
* graphics canvas
* @param imageType
* type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
*/
public static TestResult doBitBltTestWithCheckerImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
@@ -246,7 +250,7 @@
}
/**
- * Create new buffered image containing diagonal checker pattern and then do basic BitBlt test.
+ * Create new buffered image containing diagonal checker pattern and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -269,7 +273,7 @@
}
/**
- * Create new buffered image containing diagonal checker pattern and then do basic BitBlt test.
+ * Create new buffered image containing diagonal checker pattern and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -277,6 +281,10 @@
* graphics canvas
* @param imageType
* type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
*/
public static TestResult doBitBltTestWithDiagonalCheckerImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
@@ -292,7 +300,7 @@
}
/**
- * Create new buffered image containing grid pattern and then do basic BitBlt test.
+ * Create new buffered image containing grid pattern and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -315,7 +323,7 @@
}
/**
- * Create new buffered image containing grid pattern and then do basic BitBlt test.
+ * Create new buffered image containing grid pattern and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -323,6 +331,10 @@
* graphics canvas
* @param imageType
* type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
*/
public static TestResult doBitBltTestWithGridImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
@@ -338,7 +350,7 @@
}
/**
- * Create new buffered image containing diagonal grid pattern and then do basic BitBlt test.
+ * Create new buffered image containing diagonal grid pattern and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -361,7 +373,7 @@
}
/**
- * Create new buffered image containing diagonal grid pattern and then do basic BitBlt test.
+ * Create new buffered image containing diagonal grid pattern and then perform basic BitBlt test.
*
* @param image
* image to which another image is to be drawn
@@ -369,6 +381,10 @@
* graphics canvas
* @param imageType
* type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
*/
public static TestResult doBitBltTestWithDiagonalGridImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
@@ -383,6 +399,16 @@
return BitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing black and white horizontal stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ */
public static TestResult doBitBltTestWithHorizontalStripesImage(TestImage image, Graphics2D graphics2d, int imageType)
{
// create image with given pattern
@@ -396,6 +422,20 @@
return BitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing black and white horizontal stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
+ */
public static TestResult doBitBltTestWithHorizontalStripesImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
// create image with given pattern
@@ -409,6 +449,16 @@
return BitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing black and white vertical stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ */
public static TestResult doBitBltTestWithVerticalStripesImage(TestImage image, Graphics2D graphics2d, int imageType)
{
// create image with given pattern
@@ -422,6 +472,20 @@
return BitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing black and white vertical stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
+ */
public static TestResult doBitBltTestWithVerticalStripesImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
// create image with given pattern
@@ -435,6 +499,16 @@
return BitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing black and white diagonal stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ */
public static TestResult doBitBltTestWithDiagonalStripesImage(TestImage image, Graphics2D graphics2d, int imageType)
{
// create image with given pattern
@@ -448,6 +522,20 @@
return BitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing black and white diagonal stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
+ */
public static TestResult doBitBltTestWithDiagonalStripesImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
// create image with given pattern
@@ -461,6 +549,16 @@
return BitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing horizontal color stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ */
public static TestResult doBitBltTestWithHorizontalColorStripesImage(TestImage image, Graphics2D graphics2d, int imageType)
{
// create image with given pattern
@@ -474,6 +572,20 @@
return BitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing horizontal color stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
+ */
public static TestResult doBitBltTestWithHorizontalColorStripesImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
// create image with given pattern
@@ -487,6 +599,16 @@
return BitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing vertical color stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ */
public static TestResult doBitBltTestWithVerticalColorStripesImage(TestImage image, Graphics2D graphics2d, int imageType)
{
// create image with given pattern
@@ -500,6 +622,20 @@
return BitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing vertical color stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
+ */
public static TestResult doBitBltTestWithVerticalColorStripesImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
// create image with given pattern
@@ -513,6 +649,16 @@
return BitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing diagonal color stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ */
public static TestResult doBitBltTestWithDiagonalColorStripesImage(TestImage image, Graphics2D graphics2d, int imageType)
{
// create image with given pattern
@@ -526,6 +672,20 @@
return BitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing diagonal color stripes then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
+ */
public static TestResult doBitBltTestWithDiagonalColorStripesImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
// create image with given pattern
@@ -539,6 +699,16 @@
return BitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing black and white dot pattern then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ */
public static TestResult doBitBltTestWithBWDotsImage(TestImage image, Graphics2D graphics2d, int imageType)
{
// create image with given pattern
@@ -552,6 +722,20 @@
return BitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing black and white dot pattern then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
+ */
public static TestResult doBitBltTestWithBWDotsImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
// create image with given pattern
@@ -565,6 +749,16 @@
return BitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing color dot pattern then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ */
public static TestResult doBitBltTestWithColorDotsImage(TestImage image, Graphics2D graphics2d, int imageType)
{
// create image with given pattern
@@ -578,6 +772,20 @@
return BitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
+ /**
+ * Create new buffered image containing color dot pattern then perform basic BitBlt test.
+ *
+ * @param image
+ * image to which another image is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param width
+ * width of a image after BitBlt operation is performed
+ * @param height
+ * height of a image after BitBlt operation is performed
+ */
public static TestResult doBitBltTestWithColorDotsImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
// create image with given pattern
diff -r 49ff22218b59 -r 5bdebda6f7e5 src/org/gfxtest/framework/ImageFactory.java
--- a/src/org/gfxtest/framework/ImageFactory.java Wed Feb 01 10:28:44 2012 +0100
+++ b/src/org/gfxtest/framework/ImageFactory.java Thu Feb 02 11:59:31 2012 +0100
@@ -66,6 +66,56 @@
}
/**
+ * Add small simple label to the top left corner of the test image.
+ *
+ * @param image
+ * buffered image containing test pattern
+ */
+ private static void drawLabelToImage(BufferedImage image)
+ {
+ // Array of string containing raster logo
+ // ' ' == black pixel
+ // '*' == white pixel
+ final String[] quickAndDirtyBitmap = new String[]
+ {
+ "***** *** ****",
+ " * * * * *",
+ " * * * ****",
+ " * * * *",
+ " * *** *",
+ "",
+ "",
+ " ***** *****",
+ " * *",
+ "* *** *** *****",
+ "* * * *",
+ "* ***** * *",
+ "* *",
+ "***** *"
+ };
+ // vertical position of the first row of pixels
+ int y = 2;
+ // render all raster lines
+ for (String line : quickAndDirtyBitmap)
+ {
+ // horizontal position of the first column of pixels
+ int x = 2;
+ // render all pixels on raster line
+ for (int i = 0; i < line.length(); i++)
+ {
+ // get pixel value
+ boolean pixel = line.charAt(i) == '*';
+ // convert it to RGB color
+ int color = booleanToBlackOrWhiteColor(pixel);
+ // and draw the pixel
+ image.setRGB(x, y, color);
+ x++;
+ }
More information about the distro-pkg-dev
mailing list