GradientPaintContext.java 5.5 KB
Newer Older
1
/* GradientPaintContext.java --
Tom Tromey committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
   Copyright (C) 2005, Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath 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.

GNU Classpath 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 GNU Classpath; 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 gnu.java.awt;

import java.awt.geom.Point2D;
import java.awt.image.ColorModel;
import java.awt.image.Raster;
import java.awt.image.WritableRaster;
import java.awt.PaintContext;
import java.awt.Color;

/**
 * A {@link PaintContext} used by the {@link GradientPaint} class.
 */
50
public class GradientPaintContext implements PaintContext
Tom Tromey committed
51 52
{

53
  // This implementation follows the technique described in
Tom Tromey committed
54
  // "Java(tm) 2D Graphics" by Jonathan Knudsen (O'Reilly 1999).
55

Tom Tromey committed
56 57
  /** The x-coordinate of the anchor point for color 1. */
  private final float x1;
58

Tom Tromey committed
59 60
  /** The y-coordinate of the anchor point for color 1. */
  private final float y1;
61

Tom Tromey committed
62 63
  /** Color 1. */
  private final Color c1;
64

Tom Tromey committed
65 66
  /** The x-coordinate of the anchor point for color 2. */
  private final float x2;
67

Tom Tromey committed
68 69
  /** The y-coordinate of the anchor point for color 2. */
  private final float y2;
70

Tom Tromey committed
71 72
  /** Color 2. */
  private final Color c2;
73

Tom Tromey committed
74 75
  /** A flag indicating whether the gradient is cyclic or acyclic. */
  private final boolean cyclic;
76

Tom Tromey committed
77
  /** The length of the gradient line - computed from the two anchor points. */
78
  private final double length;
Tom Tromey committed
79 80 81

  /**
   * Creates a new instance.
82
   *
Tom Tromey committed
83 84 85 86 87 88 89 90 91
   * @param x1  the x-coordinate for the anchor point for color 1.
   * @param y1  the y-coordinate for the anchor point for color 1.
   * @param c1  color 1.
   * @param x2  the x-coordinate for the anchor point for color 2.
   * @param y2  the y-coordinate for the anchor point for color 2.
   * @param c2  color 2.
   * @param cyclic  a flag that determines whether the gradient is cyclic
   *                or acyclic.
   */
92 93 94
  public GradientPaintContext(float x1, float y1, Color c1,
                              float x2, float y2, Color c2, boolean cyclic)
  {
Tom Tromey committed
95 96 97 98 99 100 101 102 103
    this.x1 = x1;
    this.y1 = y1;
    this.c1 = c1;
    this.x2 = x2;
    this.y2 = y2;
    this.c2 = c2;
    this.cyclic = cyclic;
    length = Point2D.distance(x1, y1, x2, y2);
  }
104

Tom Tromey committed
105 106 107 108 109 110 111
  /**
   * Return the color model of this context. It may be different from the
   * hint specified during createContext, as not all contexts can generate
   * color patterns in an arbitrary model.
   *
   * @return the context color model
   */
112
  public ColorModel getColorModel()
Tom Tromey committed
113
  {
114
    return ColorModel.getRGBdefault();
Tom Tromey committed
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
  }

  /**
   * Return a raster containing the colors for the graphics operation.
   *
   * @param x the x-coordinate, in device space
   * @param y the y-coordinate, in device space
   * @param w the width, in device space
   * @param h the height, in device space
   * @return a raster for the given area and color
   */
  public Raster getRaster(int x, int y, int w, int h) {
    ColorModel cm = getColorModel();
    WritableRaster raster = cm.createCompatibleWritableRaster(w, h);
    int[] data = new int[w * h * 4];
    double pd2 = (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2);
    for (int r = 0; r < h; r++) {
      for (int c = 0; c < w; c++) {
        double u = 0.0;
134 135
        if (pd2 != 0)
          u = (((x + c) - x1) * (x2 - x1) + ((y + r) - y1) * (y2 - y1))
Tom Tromey committed
136 137 138 139
                  / Math.sqrt(pd2);
        double ratio = u / length;
        if (cyclic)
          ratio = Math.abs(ratio - Math.floor((ratio + 1.0) / 2.0) * 2.0);
140
        else
Tom Tromey committed
141 142 143
          ratio = Math.max(0.0, Math.min(1.0, ratio));
        int base = (r * w + c) * 4;
        data[base] = (int) (c1.getRed() + ratio * (c2.getRed() - c1.getRed()));
144
        data[base + 1]
Tom Tromey committed
145
          = (int) (c1.getGreen() + ratio * (c2.getGreen() - c1.getGreen()));
146
        data[base + 2]
Tom Tromey committed
147
          = (int) (c1.getBlue() + ratio * (c2.getBlue() - c1.getBlue()));
148
        data[base + 3]
Tom Tromey committed
149 150 151 152 153 154 155 156
          = (int) (c1.getAlpha() + ratio * (c2.getAlpha() - c1.getAlpha()));
      }
    }
    raster.setPixels(0, 0, w, h, data);
    return raster;
  }

  /**
157
   * Release the resources allocated for the paint (none in this
Tom Tromey committed
158 159 160
   * implementation).
   */
  public void dispose() {
161
    // nothing to do
Tom Tromey committed
162
  }
163

Tom Tromey committed
164
}