void |
SLGraphics.clip(Shape s) |
Intersects the current Clip with the interior of the
specified Shape and sets the Clip to the
resulting intersection.
|
boolean |
SLGraphics.drawImage(Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
Color bgcolor,
ImageObserver observer) |
Draws as much of the specified area of the specified image as is
currently available, scaling it on the fly to fit inside the
specified area of the destination drawable surface.
|
boolean |
SLGraphics.drawImage(Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
ImageObserver observer) |
Draws as much of the specified area of the specified image as is
currently available, scaling it on the fly to fit inside the
specified area of the destination drawable surface.
|
boolean |
SLGraphics.drawImage(Image img,
int x,
int y,
int width,
int height,
Color bgcolor,
ImageObserver observer) |
Draws as much of the specified image as has already been scaled
to fit inside the specified rectangle.
|
boolean |
SLGraphics.drawImage(Image img,
int x,
int y,
int width,
int height,
ImageObserver observer) |
Draws as much of the specified image as has already been scaled
to fit inside the specified rectangle.
|
boolean |
SLGraphics.drawImage(Image img,
int x,
int y,
Color bgcolor,
ImageObserver observer) |
Draws as much of the specified image as is currently available.
|
boolean |
SLGraphics.drawImage(Image img,
int x,
int y,
ImageObserver observer) |
Draws as much of the specified image as is currently available.
|
boolean |
SLGraphics.drawImage(Image img,
AffineTransform xform,
ImageObserver obs) |
Renders an image, applying a transform from image space into user space
before drawing.
|
void |
SLGraphics.drawRenderableImage(RenderableImage img,
AffineTransform xform) |
Renders a RenderedImage ,
applying a transform from image
space into user space before drawing.
|
void |
SLGraphics.drawRenderedImage(RenderedImage img,
AffineTransform xform) |
Renders a
RenderableImage ,
applying a transform from image space into user space before drawing.
|
void |
SLGraphics.drawString(AttributedCharacterIterator iterator,
float x,
float y) |
Renders the text of the specified iterator, using the
Graphics2D context's current Paint .
|
Shape |
SLGraphics.getClip() |
Gets the current clipping area.
|
Composite |
SLGraphics.getComposite() |
Returns the current Composite in the
Graphics2D context.
|
void |
SLGraphics.setClip(Shape clip) |
Sets the current clipping area to an arbitrary clip shape.
|
void |
SLGraphics.setComposite(Composite comp) |
Sets the Composite for the Graphics2D context.
|
void |
SLGraphics.setPaintMode() |
Sets the paint mode of this graphics context to overwrite the
destination with this graphics context's current color.
|
void |
SLGraphics.setXORMode(Color c1) |
Sets the paint mode of this graphics context to alternate between
this graphics context's current color and the new specified color.
|