/hg/gfx-test: Added support for BitBlt operation which uses spec...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Nov 16 02:00:56 PST 2012


changeset d46a6aa281e0 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=d46a6aa281e0
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Nov 16 11:00:01 2012 +0100

	Added support for BitBlt operation which uses specified background
	color: src/org/gfxtest/framework/CommonBitmapOperations.java.


diffstat:

 ChangeLog                                             |    6 +
 src/org/gfxtest/framework/CommonBitmapOperations.java |  244 +++++++++++++++++-
 2 files changed, 249 insertions(+), 1 deletions(-)

diffs (330 lines):

diff -r 6d5e5cd3917b -r d46a6aa281e0 ChangeLog
--- a/ChangeLog	Thu Nov 15 10:09:41 2012 +0100
+++ b/ChangeLog	Fri Nov 16 11:00:01 2012 +0100
@@ -1,3 +1,9 @@
+2012-11-16  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonBitmapOperations.java:
+	Added support for BitBlt operation which uses specified background
+	color.
+
 2012-11-15  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java:
diff -r 6d5e5cd3917b -r d46a6aa281e0 src/org/gfxtest/framework/CommonBitmapOperations.java
--- a/src/org/gfxtest/framework/CommonBitmapOperations.java	Thu Nov 15 10:09:41 2012 +0100
+++ b/src/org/gfxtest/framework/CommonBitmapOperations.java	Fri Nov 16 11:00:01 2012 +0100
@@ -40,6 +40,7 @@
 
 package org.gfxtest.framework;
 
+import java.awt.Color;
 import java.awt.Graphics2D;
 import java.awt.Rectangle;
 import java.awt.image.BufferedImage;
@@ -90,6 +91,29 @@
     }
 
     /**
+     * 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
+     * @param destinationImage
+     *            destination image for BitBlt graphics canvas
+     * @param graphics2d
+     *            instance of class used during rendering
+     * @param bgcolor
+     *            background color
+     * @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, Color bgcolor)
+    {
+        // compute top-left corner coordinates
+        final int x = (destinationImage.getWidth() - DEFAULT_TEST_IMAGE_WIDTH) >> 1;
+        final int y = (destinationImage.getHeight() - DEFAULT_TEST_IMAGE_HEIGHT) >> 1;
+        return graphics2d.drawImage(sourceImage, x, y, bgcolor, null);
+    }
+
+    /**
      * Performs BitBlt operation for given source and destination image. Scaling
      * are performed according to parameters width and height.
      * 
@@ -115,6 +139,33 @@
     }
 
     /**
+     * Performs BitBlt operation for given source and destination image. Scaling
+     * are performed according to parameters width and height.
+     * 
+     * @param sourceImage
+     *            source image for BitBlt
+     * @param destinationImage
+     *            destination image for BitBlt graphics canvas
+     * @param graphics2d
+     *            instance of class used during rendering
+     * @param bgcolor
+     *            background color
+     * @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
+     */
+    private static boolean performBitBlt(BufferedImage sourceImage, TestImage destinationImage, Graphics2D graphics2d, Color bgcolor, int width, int height)
+    {
+        // compute top-left corner coordinates
+        final int x = (destinationImage.getWidth() - width) >> 1;
+        final int y = (destinationImage.getHeight() - height) >> 1;
+        return graphics2d.drawImage(sourceImage, x, y, width, height, bgcolor, null);
+    }
+
+    /**
      * Performs BitBlt operation for given source and destination image.
      * Horizontal and/or vertical flipping/mirroring are performed according to
      * parameters horizontalFlip and verticalFlip.
@@ -152,6 +203,44 @@
 
     /**
      * 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
+     * @param destinationImage
+     *            destination image for BitBlt graphics canvas
+     * @param graphics2d
+     *            instance of class used during rendering
+     * @param bgcolor
+     *            background color
+     * @param horizontalFlip
+     *            enables performing horizontal flip of image
+     * @param verticalFlip
+     *            enables performing vertical flip of 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,
+                    Color bgcolor, boolean horizontalFlip, boolean verticalFlip)
+    {
+        // 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 + DEFAULT_TEST_IMAGE_WIDTH;
+        final int dy2 = dy1 + DEFAULT_TEST_IMAGE_HEIGHT;
+        // compute top-left corner coordinates of source image
+        final int sx1 = horizontalFlip ? DEFAULT_TEST_IMAGE_WIDTH: 0;
+        final int sy1 = verticalFlip ? DEFAULT_TEST_IMAGE_HEIGHT : 0;
+        // compute bottom-right corner coordinates of source image
+        final int sx2 = horizontalFlip ? 0 : DEFAULT_TEST_IMAGE_WIDTH;
+        final int sy2 = verticalFlip ? 0 : DEFAULT_TEST_IMAGE_HEIGHT;
+        return graphics2d.drawImage(sourceImage, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, null);
+    }
+
+    /**
+     * Performs BitBlt operation for given source and destination image.
      * Cropping is used according to parameter cropRegion.
      *
      * @param sourceImage
@@ -184,6 +273,41 @@
     }
 
     /**
+     * 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 bgcolor
+     *            background color
+     * @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,
+                    Color bgcolor, 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, bgcolor, null);
+    }
+
+    /**
      * Create buffered bitmap with given type.
      * 
      * @param type
@@ -221,6 +345,32 @@
 
     /**
      * 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // 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, no flipping and no cropping
+        return performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
+     * Create new buffered image and then perform basic BitBlt test.
      *
      * @param image
      *            image to which another image is to be drawn
@@ -249,6 +399,37 @@
 
     /**
      * 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 bgcolor
+     *            background color
+     * @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 doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType,
+                    Color bgcolor, 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)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with custom scaling
+        return performBitBlt(bufferedImage, image, graphics2d, bgcolor, width, height) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
+     * Create new buffered image and then perform basic BitBlt test.
      *
      * @param image
      *            image to which another image is to be drawn
@@ -285,6 +466,37 @@
      *            graphics canvas
      * @param imageType
      *            type of the created image
+     * @param bgcolor
+     *            background color
+     * @param horizontalFlip
+     *            enables performing horizontal flip of image
+     * @param verticalFlip
+     *            enables performing vertical flip of image
+     */
+    public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor,
+                    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)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling
+        return performBitBlt(bufferedImage, image, graphics2d, bgcolor, horizontalFlip, verticalFlip) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
+     * 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
      */
@@ -304,6 +516,35 @@
     }
 
     /**
+     * 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 bgcolor
+     *            background color
+     * @param cropRegion
+     *            region in the image to crop
+     */
+    public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType,
+                    Color bgcolor, 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, bgcolor, cropRegion) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing checker pattern and then perform basic BitBlt test.
      *
      * @param image
@@ -1154,7 +1395,8 @@
      * @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)
+    public static TestResult doBitBltTestWithColorDotsImage(TestImage image, Graphics2D graphics2d, int imageType,
+                    int width, int height)
     {
         // create new buffered bitmap with given type
         // bitmap should contains simple color dot pattern



More information about the distro-pkg-dev mailing list