/hg/gfx-test: Added helper methods for rendering cropped images....
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Sep 18 04:57:30 PDT 2012
changeset 69fc6f9b7bb7 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=69fc6f9b7bb7
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Sep 18 14:00:08 2012 +0200
Added helper methods for rendering cropped images. Those
method are to be used by various tests.
diffstat:
ChangeLog | 6 +
src/org/gfxtest/framework/CommonBitmapOperations.java | 412 +++++++++++++++--
2 files changed, 370 insertions(+), 48 deletions(-)
diffs (truncated from 780 to 500 lines):
diff -r 4fdd5848ee80 -r 69fc6f9b7bb7 ChangeLog
--- a/ChangeLog Mon Sep 17 10:23:43 2012 +0200
+++ b/ChangeLog Tue Sep 18 14:00:08 2012 +0200
@@ -1,3 +1,9 @@
+2012-09-18 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/CommonBitmapOperations.java:
+ Added helper methods for rendering cropped images. Those
+ method are to be used by various tests.
+
2012-09-17 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltScaleImage.java:
diff -r 4fdd5848ee80 -r 69fc6f9b7bb7 src/org/gfxtest/framework/CommonBitmapOperations.java
--- a/src/org/gfxtest/framework/CommonBitmapOperations.java Mon Sep 17 10:23:43 2012 +0200
+++ b/src/org/gfxtest/framework/CommonBitmapOperations.java Tue Sep 18 14:00:08 2012 +0200
@@ -41,8 +41,16 @@
package org.gfxtest.framework;
import java.awt.Graphics2D;
+import java.awt.Rectangle;
import java.awt.image.BufferedImage;
+
+
+/**
+ * This class contains various bitmap operations used by some gfx tests.
+ *
+ * @author Pavel Tisnovsky
+ */
public class CommonBitmapOperations
{
/**
@@ -61,7 +69,8 @@
public final static int DEFAULT_TEST_IMAGE_HEIGHT = 256;
/**
- * Performs BitBlt operation.
+ * Performs basic BitBlt operation for given source and destination image.
+ * No mirroring, scaling and/or clipping are performed during BitBlt.
*
* @param sourceImage
* source image for BitBlt
@@ -81,7 +90,8 @@
}
/**
- * Performs BitBlt operation.
+ * Performs BitBlt operation for given source and destination image. Scaling
+ * are performed according to parameters width and height.
*
* @param sourceImage
* source image for BitBlt
@@ -90,7 +100,9 @@
* @param graphics2d
* instance of class used during rendering
* @param width
+ * width of the destination region
* @param height
+ * height of the destination region
* @return if the image has completely loaded and its pixels are no longer
* being changed, then returns true. Otherwise, returns false
*/
@@ -103,7 +115,9 @@
}
/**
- * Performs BitBlt operation.
+ * Performs BitBlt operation for given source and destination image.
+ * Horizontal and/or vertical flipping/mirroring are performed according to
+ * parameters horizontalFlip and verticalFlip.
*
* @param sourceImage
* source image for BitBlt
@@ -137,6 +151,39 @@
}
/**
+ * Performs BitBlt operation for given source and destination image.
+ * Cropping is used according to parameter cropRegion.
+ *
+ * @param sourceImage
+ * source image for BitBlt
+ * @param destinationImage
+ * destination image for BitBlt graphics canvas
+ * @param graphics2d
+ * instance of class used during rendering
+ * @param cropRegion
+ * region used to crop part of the image
+ * @return if the image has completely loaded and its pixels are no longer
+ * being changed, then returns true. Otherwise, returns false
+ */
+ private static boolean performBitBlt(BufferedImage sourceImage, TestImage destinationImage, Graphics2D graphics2d,
+ Rectangle cropRegion)
+ {
+ // compute top-left corner coordinates of destination image
+ final int dx1 = (destinationImage.getWidth() - DEFAULT_TEST_IMAGE_WIDTH) >> 1;
+ final int dy1 = (destinationImage.getHeight() - DEFAULT_TEST_IMAGE_HEIGHT) >> 1;
+ // compute bottom-right corner coordinates of destination image
+ final int dx2 = dx1 + cropRegion.width;
+ final int dy2 = dy1 + cropRegion.height;
+ // compute top-left corner coordinates of source image
+ final int sx1 = cropRegion.x;
+ final int sy1 = cropRegion.y;
+ // compute bottom-right corner coordinates of source image
+ final int sx2 = sx1 + cropRegion.width;
+ final int sy2 = sy1 + cropRegion.height;
+ return graphics2d.drawImage(sourceImage, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
+ }
+
+ /**
* Create buffered bitmap with given type.
*
* @param type
@@ -160,13 +207,15 @@
*/
public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType)
{
+ // create new buffered bitmap with given type
+ // bitmap should be empty - solid color pixels
BufferedImage bufferedImage = createBufferedBitmap(imageType);
// basic check if buffered image was created
if (bufferedImage == null)
{
return TestResult.FAILED;
}
- // BitBlt with 1:1 scaling
+ // BitBlt with 1:1 scaling, no flipping and no cropping
return performBitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
}
@@ -186,6 +235,8 @@
*/
public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
+ // create new buffered bitmap with given type
+ // bitmap should be empty - solid color pixels
BufferedImage bufferedImage = createBufferedBitmap(imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -213,6 +264,8 @@
public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType,
boolean horizontalFlip, boolean verticalFlip)
{
+ // create new buffered bitmap with given type
+ // bitmap should be empty - solid color pixels
BufferedImage bufferedImage = createBufferedBitmap(imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -224,6 +277,33 @@
}
/**
+ * Create new buffered image and 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 cropRegion
+ * region in the image to crop
+ */
+ public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType,
+ Rectangle cropRegion)
+ {
+ // create new buffered bitmap with given type
+ // bitmap should be empty - solid color pixels
+ BufferedImage bufferedImage = createBufferedBitmap(imageType);
+ // basic check if buffered image was created
+ if (bufferedImage == null)
+ {
+ return TestResult.FAILED;
+ }
+ // BitBlt with 1:1 scaling and cropping
+ return performBitBlt(bufferedImage, image, graphics2d, cropRegion) ? TestResult.PASSED : TestResult.FAILED;
+ }
+
+ /**
* Create new buffered image containing checker pattern and then perform basic BitBlt test.
*
* @param image
@@ -235,7 +315,8 @@
*/
public static TestResult doBitBltTestWithCheckerImage(TestImage image, Graphics2D graphics2d, int imageType)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains checker pattern
BufferedImage bufferedImage = ImageFactory.createCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -262,7 +343,8 @@
*/
public static TestResult doBitBltTestWithCheckerImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains checker pattern
BufferedImage bufferedImage = ImageFactory.createCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -291,7 +373,8 @@
public static TestResult doBitBltTestWithCheckerImage(TestImage image, Graphics2D graphics2d, int imageType,
boolean horizontalFlip, boolean verticalFlip)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains checker pattern
BufferedImage bufferedImage = ImageFactory.createCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -303,6 +386,34 @@
}
/**
+ * Create new buffered image containing checker pattern and 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 cropRegion
+ * region in the image to crop
+ */
+ public static TestResult doBitBltTestWithCheckerImage(TestImage image, Graphics2D graphics2d, int imageType,
+ Rectangle cropRegion)
+ {
+ // create new buffered bitmap with given type
+ // bitmap should contains checker pattern
+ BufferedImage bufferedImage = ImageFactory.createCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+ // basic check if buffered image was created
+ if (bufferedImage == null)
+ {
+ return TestResult.FAILED;
+ }
+ // BitBlt with 1:1 scaling and cropping
+ return performBitBlt(bufferedImage, image, graphics2d, cropRegion) ? TestResult.PASSED : TestResult.FAILED;
+ }
+
+ /**
* Create new buffered image containing diagonal checker pattern and then perform basic BitBlt test.
*
* @param image
@@ -314,7 +425,8 @@
*/
public static TestResult doBitBltTestWithDiagonalCheckerImage(TestImage image, Graphics2D graphics2d, int imageType)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains diagonal checker pattern
BufferedImage bufferedImage = ImageFactory.createDiagonalCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -341,7 +453,8 @@
*/
public static TestResult doBitBltTestWithDiagonalCheckerImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains diagonal checker pattern
BufferedImage bufferedImage = ImageFactory.createDiagonalCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -353,6 +466,64 @@
}
/**
+ * 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
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param horizontalFlip
+ * enables performing horizontal flip of image
+ * @param verticalFlip
+ * enables performing vertical flip of image
+ */
+ public static TestResult doBitBltTestWithDiagonalCheckerImage(TestImage image, Graphics2D graphics2d, int imageType,
+ boolean horizontalFlip, boolean verticalFlip)
+ {
+ // create new buffered bitmap with given type
+ // bitmap should contains diagonal checker pattern
+ BufferedImage bufferedImage = ImageFactory.createDiagonalCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+ // basic check if buffered image was created
+ if (bufferedImage == null)
+ {
+ return TestResult.FAILED;
+ }
+ // BitBlt with custom scaling
+ return performBitBlt(bufferedImage, image, graphics2d, horizontalFlip, verticalFlip) ? TestResult.PASSED : TestResult.FAILED;
+ }
+
+ /**
+ * 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
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param cropRegion
+ * region in the image to crop
+ */
+ public static TestResult doBitBltTestWithDiagonalCheckerImage(TestImage image, Graphics2D graphics2d, int imageType,
+ Rectangle cropRegion)
+ {
+ // create new buffered bitmap with given type
+ // bitmap should contains diagonal checker pattern
+ BufferedImage bufferedImage = ImageFactory.createDiagonalCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+ // basic check if buffered image was created
+ if (bufferedImage == null)
+ {
+ return TestResult.FAILED;
+ }
+ // BitBlt with 1:1 scaling and cropping
+ return performBitBlt(bufferedImage, image, graphics2d, cropRegion) ? TestResult.PASSED : TestResult.FAILED;
+ }
+
+ /**
* Create new buffered image containing grid pattern and then perform basic BitBlt test.
*
* @param image
@@ -364,7 +535,8 @@
*/
public static TestResult doBitBltTestWithGridImage(TestImage image, Graphics2D graphics2d, int imageType)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains grid pattern
BufferedImage bufferedImage = ImageFactory.createGridImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -391,7 +563,8 @@
*/
public static TestResult doBitBltTestWithGridImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains grid pattern
BufferedImage bufferedImage = ImageFactory.createGridImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -403,6 +576,64 @@
}
/**
+ * 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
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param horizontalFlip
+ * enables performing horizontal flip of image
+ * @param verticalFlip
+ * enables performing vertical flip of image
+ */
+ public static TestResult doBitBltTestWithGridImage(TestImage image, Graphics2D graphics2d, int imageType,
+ boolean horizontalFlip, boolean verticalFlip)
+ {
+ // create new buffered bitmap with given type
+ // bitmap should contains grid pattern
+ BufferedImage bufferedImage = ImageFactory.createGridImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+ // basic check if buffered image was created
+ if (bufferedImage == null)
+ {
+ return TestResult.FAILED;
+ }
+ // BitBlt with custom scaling
+ return performBitBlt(bufferedImage, image, graphics2d, horizontalFlip, verticalFlip) ? TestResult.PASSED : TestResult.FAILED;
+ }
+
+ /**
+ * 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
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param cropRegion
+ * region in the image to crop
+ */
+ public static TestResult doBitBltTestWithGridImage(TestImage image, Graphics2D graphics2d, int imageType,
+ Rectangle cropRegion)
+ {
+ // create new buffered bitmap with given type
+ // bitmap should contains grid pattern
+ BufferedImage bufferedImage = ImageFactory.createGridImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+ // basic check if buffered image was created
+ if (bufferedImage == null)
+ {
+ return TestResult.FAILED;
+ }
+ // BitBlt with 1:1 scaling and cropping
+ return performBitBlt(bufferedImage, image, graphics2d, cropRegion) ? TestResult.PASSED : TestResult.FAILED;
+ }
+
+ /**
* Create new buffered image containing diagonal grid pattern and then perform basic BitBlt test.
*
* @param image
@@ -414,7 +645,8 @@
*/
public static TestResult doBitBltTestWithDiagonalGridImage(TestImage image, Graphics2D graphics2d, int imageType)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains diagonal grid pattern
BufferedImage bufferedImage = ImageFactory.createDiagonalGridImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -441,7 +673,8 @@
*/
public static TestResult doBitBltTestWithDiagonalGridImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
{
- // create image with given pattern
+ // create new buffered bitmap with given type
+ // bitmap should contains diagonal grid pattern
BufferedImage bufferedImage = ImageFactory.createDiagonalGridImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
// basic check if buffered image was created
if (bufferedImage == null)
@@ -453,6 +686,64 @@
}
/**
+ * 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
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param horizontalFlip
+ * enables performing horizontal flip of image
+ * @param verticalFlip
+ * enables performing vertical flip of image
+ */
+ public static TestResult doBitBltTestWithDiagonalGridImage(TestImage image, Graphics2D graphics2d, int imageType,
+ boolean horizontalFlip, boolean verticalFlip)
+ {
+ // create new buffered bitmap with given type
+ // bitmap should contains diagonal grid pattern
+ BufferedImage bufferedImage = ImageFactory.createDiagonalGridImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+ // basic check if buffered image was created
+ if (bufferedImage == null)
+ {
+ return TestResult.FAILED;
+ }
+ // BitBlt with custom scaling
+ return performBitBlt(bufferedImage, image, graphics2d, horizontalFlip, verticalFlip) ? TestResult.PASSED : TestResult.FAILED;
+ }
+
+ /**
+ * 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
+ * @param graphics2d
+ * graphics canvas
+ * @param imageType
+ * type of the created image
+ * @param cropRegion
+ * region in the image to crop
+ */
+ public static TestResult doBitBltTestWithDiagonalGridImage(TestImage image, Graphics2D graphics2d, int imageType,
+ Rectangle cropRegion)
+ {
+ // create new buffered bitmap with given type
+ // bitmap should contains diagonal grid pattern
+ BufferedImage bufferedImage = ImageFactory.createDiagonalGridImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+ // basic check if buffered image was created
+ if (bufferedImage == null)
+ {
+ return TestResult.FAILED;
+ }
+ // BitBlt with 1:1 scaling and cropping
+ return performBitBlt(bufferedImage, image, graphics2d, cropRegion) ? TestResult.PASSED : TestResult.FAILED;
+ }
+
+ /**
More information about the distro-pkg-dev
mailing list