/hg/gfx-test: 2011-10-07 Pavel Tisnovsky <ptisnovs at redhat.com>

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Oct 7 06:19:46 PDT 2011


changeset 968a7f4d40a5 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=968a7f4d40a5
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Oct 07 15:21:39 2011 +0200

	2011-10-07 Pavel Tisnovsky <ptisnovs at redhat.com>

	 * Makefile: added new class to compile
		* src/org/gfxtest/framework/package-info.java: Added classic
	package-info.java class
		* src/org/gfxtest/framework/ProceduralTextureFactory.java:
	Added new class containing methods used for creating various
	procedural textures.
		* src/org/gfxtest/framework/CommonRenderingStyles.java: Added
	new method for creating rendering styles using texture paints.


diffstat:

 ChangeLog                                               |   11 +
 Makefile                                                |    1 +
 src/org/gfxtest/framework/CommonRenderingStyles.java    |  149 +++++-
 src/org/gfxtest/framework/ProceduralTextureFactory.java |  408 ++++++++++++++++
 src/org/gfxtest/framework/package-info.java             |   45 +
 5 files changed, 611 insertions(+), 3 deletions(-)

diffs (truncated from 683 to 500 lines):

diff -r 8dda8b319223 -r 968a7f4d40a5 ChangeLog
--- a/ChangeLog	Thu Oct 06 10:50:05 2011 +0200
+++ b/ChangeLog	Fri Oct 07 15:21:39 2011 +0200
@@ -1,3 +1,14 @@
+2011-10-07  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* Makefile: added new class to compile
+	* src/org/gfxtest/framework/package-info.java:
+	Added classic package-info.java class
+	* src/org/gfxtest/framework/ProceduralTextureFactory.java:
+	Added new class containing methods used for creating various
+	procedural textures.
+	* src/org/gfxtest/framework/CommonRenderingStyles.java:
+	Added new method for creating rendering styles using texture paints.
+
 2011-10-06  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* Makefile: added new class to compile
diff -r 8dda8b319223 -r 968a7f4d40a5 Makefile
--- a/Makefile	Thu Oct 06 10:50:05 2011 +0200
+++ b/Makefile	Fri Oct 07 15:21:39 2011 +0200
@@ -85,6 +85,7 @@
 	$(CLASSES)/$(FRAMEWORK_DIR)/TestImage.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/GfxTest.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/Log.class \
+	$(CLASSES)/$(FRAMEWORK_DIR)/ProceduralTextureFactory.class \
 	$(CLASSES)/$(IMAGE_DIFFER_DIR)/ComparisonResult.class \
 	$(CLASSES)/$(IMAGE_DIFFER_DIR)/Configuration.class \
 	$(CLASSES)/$(IMAGE_DIFFER_DIR)/ImageComparator.class \
diff -r 8dda8b319223 -r 968a7f4d40a5 src/org/gfxtest/framework/CommonRenderingStyles.java
--- a/src/org/gfxtest/framework/CommonRenderingStyles.java	Thu Oct 06 10:50:05 2011 +0200
+++ b/src/org/gfxtest/framework/CommonRenderingStyles.java	Fri Oct 07 15:21:39 2011 +0200
@@ -46,7 +46,9 @@
 import java.awt.Graphics2D;
 import java.awt.LinearGradientPaint;
 import java.awt.RadialGradientPaint;
+import java.awt.TexturePaint;
 import java.awt.MultipleGradientPaint.CycleMethod;
+import java.awt.geom.Rectangle2D;
 
 
 
@@ -437,7 +439,7 @@
         int radius = CommonShapesRenderer.calculateRadius(image);
         // set smaller radius to better see color gradient
         radius = radius >> 1;
-        int r2 = (int)(radius * SIN_COS_45 );
+        int r2 = (int) (radius * SIN_COS_45);
         int delta = (int) (offset * SIN_COS_45);
 
         // compute end points used for diagonal fill
@@ -878,7 +880,7 @@
      * @param color3
      *            color used in the gradient
      */
-    private static void setRadialGradientFill(TestImage image, Graphics2D graphics, Color color1, Color color2, Color color3)
+    public static void setRadialGradientFill(TestImage image, Graphics2D graphics, Color color1, Color color2, Color color3)
     {
         setRadialGradientFill(image, graphics, color1, color2, color3, CycleMethod.NO_CYCLE, 1.0f);
     }
@@ -901,7 +903,7 @@
      * @param radiusScale
      *            scale used while calculating radius
      */
-    private static void setRadialGradientFill(TestImage image, Graphics2D graphics, Color color1, Color color2, Color color3, CycleMethod cycleMethod, float radiusScale)
+    public static void setRadialGradientFill(TestImage image, Graphics2D graphics, Color color1, Color color2, Color color3, CycleMethod cycleMethod, float radiusScale)
     {
         // calculate center of the image
         int xc = image.getCenterX();
@@ -941,6 +943,133 @@
     }
 
     /**
+     * Set texture paint using simple checker texture containing just two colors.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingCheckerTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getCheckerTexturePaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using grid texture where one-pixel width lines are used.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingGridTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getGridTexturePaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using diagonal grid texture where one-pixel width lines
+     * are used. Grid angle is set to 45 degrees.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingDiagonalGridTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getDiagonalGridTexturePaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using texture consisting of horizontal stripes.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingHorizontalStripesTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getHorizontalStripesPaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using texture consisting of vertical stripes.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingVerticalStripesTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getVerticalStripesPaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using texture consisting of diagonal stripes.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingDiagonalStripesTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getDiagonalStripesPaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using gradient texture using two basic colors.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingGradientTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getGradientTexturePaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
      * Set zero pixels wide stroke and default cap and join style.
      * 
      * @param graphics
@@ -1028,4 +1157,18 @@
     {
         graphics.setStroke(new BasicStroke(STROKE_WIDTH_EXTRA_THICK, capStyle, joinStyle));
     }
+
+    /**
+     * Create anchor rectangle used by texture paint
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @return anchor represented by {@link Rectangle2D} object
+     */
+    private static Rectangle2D createAnchorRectangle(TestImage image)
+    {
+        Rectangle2D anchor = new Rectangle2D.Double(0, 0, image.getWidth(), image.getHeight());
+        return anchor;
+    }
+
 }
diff -r 8dda8b319223 -r 968a7f4d40a5 src/org/gfxtest/framework/ProceduralTextureFactory.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/ProceduralTextureFactory.java	Fri Oct 07 15:21:39 2011 +0200
@@ -0,0 +1,408 @@
+/*
+  Java gfx-test framework
+
+   Copyright (C) 2010, 2011  Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.framework;
+
+import java.awt.TexturePaint;
+import java.awt.geom.Rectangle2D;
+import java.awt.image.BufferedImage;
+
+
+
+/**
+ * This class contains static method used for creating various procedural
+ * textures.
+ * 
+ * @author Pavel Tisnovsky
+ */
+public class ProceduralTextureFactory
+{
+    /**
+     * Image used for creating checker texture.
+     */
+    private static BufferedImage checkerTexture = null;
+
+    /**
+     * Image used for creating grid texture.
+     */
+    private static BufferedImage gridTexture = null;
+
+    /**
+     * Image used for creating diagonal grid texture.
+     */
+    private static BufferedImage diagonalGridTexture = null;
+
+    /**
+     * Image used for creating texture containing horizontal stripes.
+     */
+    private static BufferedImage horizontalStripesTexture = null;
+
+    /**
+     * Image used for creating texture containing vertical stripes.
+     */
+    private static BufferedImage verticalStripesTexture = null;
+
+    /**
+     * Image used for creating texture containing diagonal stripes.
+     */
+    private static BufferedImage diagonalStripesTexture = null;
+
+    /**
+     * Image used for creating texture containing color gradient.
+     */
+    private static BufferedImage gradientTexture = null;
+
+    /**
+     * Create checker texture where tile sizes are based on grid size.
+     * 
+     * @param gridSize
+     *            size of a grid
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing checker texture
+     */
+    private static BufferedImage checkerTextureFactory(int gridSize, int width, int height)
+    {
+        // used by test for a tile colors
+        int doubledGridSize = gridSize << 1;
+
+        // if the checker texture exists, return it
+        if (checkerTexture != null)
+        {
+            return checkerTexture;
+        }
+
+        // create new texture instead
+        checkerTexture = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+        for (int y = 0; y < height; y++)
+        {
+            for (int x = 0; x < width; x++)
+            {
+                // compute color for each tile
+                boolean evenColumn = (x % doubledGridSize) >= gridSize;
+                boolean evenRow = (y % doubledGridSize) >= gridSize;
+                // compute color for each pixel
+                int color = evenColumn ^ evenRow ? 0 : -1;
+                checkerTexture.setRGB(x, y, color);
+            }
+        }
+        return checkerTexture;
+    }
+
+    /**
+     * Create grid texture where tile sizes are based on grid size.
+     * 
+     * @param gridSize
+     *            size of a grid
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing grid texture
+     */
+    private static BufferedImage gridTextureFactory(int gridSize, int width, int height)
+    {
+        // used by test for a tile colors
+        int doubledGridSize = gridSize << 1;
+
+        // if the grid texture exists, return it
+        if (gridTexture != null)
+        {
+            return gridTexture;
+        }
+
+        // create new texture instead
+        gridTexture = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+        for (int y = 0; y < height; y++)
+        {
+            for (int x = 0; x < width; x++)
+            {
+                // compute color for each tile
+                boolean gridColumn = (x % doubledGridSize) == 0;
+                boolean gridRow = (y % doubledGridSize) == 0;
+                // compute color for each pixel
+                int color = gridColumn || gridRow ? 0 : -1;
+                gridTexture.setRGB(x, y, color);
+            }
+        }
+        return gridTexture;
+    }
+
+    /**
+     * Create diagonal grid texture where tile sizes are based on grid size.
+     * Grid angle is set to 45 degrees.
+     * 
+     * @param gridSize
+     *            size of a grid
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing grid texture
+     */
+    private static BufferedImage diagonalGridTextureFactory(int gridSize, int width, int height)
+    {
+        // used by test for a tile colors
+        int doubledGridSize = gridSize << 1;
+
+        // if the grid texture exists, return it
+        if (diagonalGridTexture != null)
+        {
+            return diagonalGridTexture;
+        }
+
+        // create new texture instead
+        diagonalGridTexture = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+        for (int y = 0; y < height; y++)
+        {
+            for (int x = 0; x < width; x++)
+            {
+                // compute color for each tile
+                boolean gridColumn = ((x+y) % doubledGridSize) == 0;
+                boolean gridRow = ((x-y) % doubledGridSize) == 0;
+                // compute color for each pixel
+                int color = gridColumn || gridRow ? 0 : -1;
+                diagonalGridTexture.setRGB(x, y, color);
+            }
+        }
+        return diagonalGridTexture;
+    }
+
+    /**
+     * Create texture containing horizontal stripes.
+     * 
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing texture
+     */
+    private static BufferedImage horizontalStripesTextureFactory(int width, int height)
+    {
+        // if the texture exists, return it
+        if (horizontalStripesTexture != null)
+        {
+            return horizontalStripesTexture;
+        }
+
+        // create new texture instead
+        horizontalStripesTexture  = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+        for (int y = 0; y < height; y++)
+        {
+            for (int x = 0; x < width; x++)
+            {
+                // compute color for each pixel
+                int color = (y % 2) == 0 ? 0 : -1;
+                horizontalStripesTexture.setRGB(x, y, color);
+            }
+        }
+        return horizontalStripesTexture;
+    }
+
+    /**
+     * Create texture containing vertical stripes.
+     * 
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing texture
+     */
+    private static BufferedImage verticalStripesTextureFactory(int width, int height)
+    {
+        // if the texture exists, return it
+        if (verticalStripesTexture != null)
+        {
+            return verticalStripesTexture;
+        }
+
+        // create new texture instead
+        verticalStripesTexture  = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+        for (int y = 0; y < height; y++)
+        {
+            for (int x = 0; x < width; x++)
+            {
+                // compute color for each pixel
+                int color = (x % 2) == 0 ? 0 : -1;
+                verticalStripesTexture.setRGB(x, y, color);
+            }
+        }
+        return verticalStripesTexture;
+    }
+
+    /**
+     * Create texture containing diagonal stripes.
+     * 



More information about the distro-pkg-dev mailing list