1 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
/* * @(#)ImageGraphicAttribute.java 1.18 06/02/14 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ /* * (C) Copyright Taligent, Inc. 1996 - 1997, All Rights Reserved * (C) Copyright IBM Corp. 1996 - 1998, All Rights Reserved * * The original version of this source code and documentation is * copyrighted and owned by Taligent, Inc., a wholly-owned subsidiary * of IBM. These materials are provided under terms of a License * Agreement between Taligent and Sun. This technology is protected * by multiple US and International patents. * * This notice and attribution to Taligent may not be removed. * Taligent is a registered trademark of Taligent, Inc. * */ package java.awt.font; import java.awt.Image; import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; /** * The <code>ImageGraphicAttribute</code> class is an implementation of * {@link GraphicAttribute} which draws images in * a {@link TextLayout}. * @see GraphicAttribute */ public final class ImageGraphicAttribute extends GraphicAttribute { private Image fImage; private float fImageWidth, fImageHeight; private float fOriginX, fOriginY; /** * Constucts an <code>ImageGraphicAttribute</code> from the specified * {@link Image}. The origin is at (0, 0). * @param image the <code>Image</code> rendered by this * <code>ImageGraphicAttribute</code>. * This object keeps a reference to <code>image</code>. * @param alignment one of the alignments from this * <code>ImageGraphicAttribute</code> */ public ImageGraphicAttribute(Image image, int alignment) { this(image, alignment, 0, 0); } /** * Constructs an <code>ImageGraphicAttribute</code> from the specified * <code>Image</code>. The point * (<code>originX</code>, <code>originY</code>) in the * <code>Image</code> appears at the origin of the * <code>ImageGraphicAttribute</code> within the text. * @param image the <code>Image</code> rendered by this * <code>ImageGraphicAttribute</code>. * This object keeps a reference to <code>image</code>. * @param alignment one of the alignments from this * <code>ImageGraphicAttribute</code> * @param originX the X coordinate of the point within * the <code>Image</code> that appears at the origin of the * <code>ImageGraphicAttribute</code> in the text line. * @param originY the Y coordinate of the point within * the <code>Image</code> that appears at the origin of the * <code>ImageGraphicAttribute</code> in the text line. */ public ImageGraphicAttribute(Image image, int alignment, float originX, float originY) { super(alignment); // Can't clone image // fImage = (Image) image.clone(); fImage = image; fImageWidth = image.getWidth(null); fImageHeight = image.getHeight(null); // ensure origin is in Image? fOriginX = originX; fOriginY = originY; } /** * Returns the ascent of this <code>ImageGraphicAttribute</code>. The * ascent of an <code>ImageGraphicAttribute</code> is the distance * from the top of the image to the origin. * @return the ascent of this <code>ImageGraphicAttribute</code>. */ public float getAscent() { return Math.max(0, fOriginY); } /** * Returns the descent of this <code>ImageGraphicAttribute</code>. * The descent of an <code>ImageGraphicAttribute</code> is the * distance from the origin to the bottom of the image. * @return the descent of this <code>ImageGraphicAttribute</code>. */ public float getDescent() { return Math.max(0, fImageHeight-fOriginY); } /** * Returns the advance of this <code>ImageGraphicAttribute</code>. * The advance of an <code>ImageGraphicAttribute</code> is the * distance from the origin to the right edge of the image. * @return the advance of this <code>ImageGraphicAttribute</code>. */ public float getAdvance() { return Math.max(0, fImageWidth-fOriginX); } /** * Returns a {@link Rectangle2D} that encloses all of the * bits rendered by this <code>ImageGraphicAttribute</code>, relative * to the rendering position. A graphic can be rendered beyond its * origin, ascent, descent, or advance; but if it is, this * method's implementation must indicate where the graphic is rendered. * @return a <code>Rectangle2D</code> that encloses all of the bits * rendered by this <code>ImageGraphicAttribute</code>. */ public Rectangle2D getBounds() { return new Rectangle2D.Float( -fOriginX, -fOriginY, fImageWidth, fImageHeight); } /** * {@inheritDoc} */ public void draw(Graphics2D graphics, float x, float y) { graphics.drawImage(fImage, (int) (x-fOriginX), (int) (y-fOriginY), null); } /** * Returns a hashcode for this <code>ImageGraphicAttribute</code>. * @return a hash code value for this object. */ public int hashCode() { return fImage.hashCode(); } /** * Compares this <code>ImageGraphicAttribute</code> to the specified * {@link Object}. * @param rhs the <code>Object</code> to compare for equality * @return <code>true</code> if this * <code>ImageGraphicAttribute</code> equals <code>rhs</code>; * <code>false</code> otherwise. */ public boolean equals(Object rhs) { try { return equals((ImageGraphicAttribute) rhs); } catch(ClassCastException e) { return false; } } /** * Compares this <code>ImageGraphicAttribute</code> to the specified * <code>ImageGraphicAttribute</code>. * @param rhs the <code>ImageGraphicAttribute</code> to compare for * equality * @return <code>true</code> if this * <code>ImageGraphicAttribute</code> equals <code>rhs</code>; * <code>false</code> otherwise. */ public boolean equals(ImageGraphicAttribute rhs) { if (rhs == null) { return false; } if (this == rhs) { return true; } if (fOriginX != rhs.fOriginX || fOriginY != rhs.fOriginY) { return false; } if (getAlignment() != rhs.getAlignment()) { return false; } if (!fImage.equals(rhs.fImage)) { return false; } return true; } }