| |
|
| java.lang.Object java.awt.font.GraphicAttribute java.awt.font.ImageGraphicAttribute
Constructor Summary | |
public | ImageGraphicAttribute(Image image, int alignment) Constucts an ImageGraphicAttribute from the specified
Image . | public | ImageGraphicAttribute(Image image, int alignment, float originX, float originY) Constructs an ImageGraphicAttribute from the specified
Image . |
Method Summary | |
public void | draw(Graphics2D graphics, float x, float y) | public boolean | equals(Object rhs) Compares this ImageGraphicAttribute to the specified
Object . | public boolean | equals(ImageGraphicAttribute rhs) Compares this ImageGraphicAttribute to the specified
ImageGraphicAttribute . | public float | getAdvance() Returns the advance of this ImageGraphicAttribute . | public float | getAscent() Returns the ascent of this ImageGraphicAttribute . | public Rectangle2D | getBounds() Returns a
Rectangle2D that encloses all of the
bits rendered by this ImageGraphicAttribute , relative
to the rendering position. | public float | getDescent() Returns the descent of this ImageGraphicAttribute . | public int | hashCode() Returns a hashcode for this ImageGraphicAttribute . |
ImageGraphicAttribute | public ImageGraphicAttribute(Image image, int alignment)(Code) | | Constucts an ImageGraphicAttribute from the specified
Image . The origin is at (0, 0).
Parameters: image - the Image rendered by thisImageGraphicAttribute .This object keeps a reference to image . Parameters: alignment - one of the alignments from thisImageGraphicAttribute |
ImageGraphicAttribute | public ImageGraphicAttribute(Image image, int alignment, float originX, float originY)(Code) | | Constructs an ImageGraphicAttribute from the specified
Image . The point
(originX , originY ) in the
Image appears at the origin of the
ImageGraphicAttribute within the text.
Parameters: image - the Image rendered by thisImageGraphicAttribute .This object keeps a reference to image . Parameters: alignment - one of the alignments from this ImageGraphicAttribute Parameters: originX - the X coordinate of the point withinthe Image that appears at the origin of theImageGraphicAttribute in the text line. Parameters: originY - the Y coordinate of the point withinthe Image that appears at the origin of theImageGraphicAttribute in the text line. |
equals | public boolean equals(Object rhs)(Code) | | Compares this ImageGraphicAttribute to the specified
Object .
Parameters: rhs - the Object to compare for equality true if this ImageGraphicAttribute equals rhs ;false otherwise. |
equals | public boolean equals(ImageGraphicAttribute rhs)(Code) | | Compares this ImageGraphicAttribute to the specified
ImageGraphicAttribute .
Parameters: rhs - the ImageGraphicAttribute to compare forequality true if thisImageGraphicAttribute equals rhs ;false otherwise. |
getAdvance | public float getAdvance()(Code) | | Returns the advance of this ImageGraphicAttribute .
The advance of an ImageGraphicAttribute is the
distance from the origin to the right edge of the image.
the advance of this ImageGraphicAttribute . |
getAscent | public float getAscent()(Code) | | Returns the ascent of this ImageGraphicAttribute . The
ascent of an ImageGraphicAttribute is the distance
from the top of the image to the origin.
the ascent of this ImageGraphicAttribute . |
getBounds | public Rectangle2D getBounds()(Code) | | Returns a
Rectangle2D that encloses all of the
bits rendered by this ImageGraphicAttribute , 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.
a Rectangle2D that encloses all of the bitsrendered by this ImageGraphicAttribute . |
getDescent | public float getDescent()(Code) | | Returns the descent of this ImageGraphicAttribute .
The descent of an ImageGraphicAttribute is the
distance from the origin to the bottom of the image.
the descent of this ImageGraphicAttribute . |
hashCode | public int hashCode()(Code) | | Returns a hashcode for this ImageGraphicAttribute .
a hash code value for this object. |
|
|
|