|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
RenderedImage is a common interface for objects which contain or can produce image data in the form of Rasters. The image data may be stored/produced as a single tile or a regular array of tiles.
Method Summary | |
WritableRaster |
copyData(WritableRaster raster)
Computes an arbitrary rectangular region of the RenderedImage and copies it into a caller-supplied WritableRaster. |
ColorModel |
getColorModel()
Returns the ColorModel associated with this image. |
Raster |
getData()
Returns the image as one large tile (for tile based images this will require fetching the whole image and copying the image data over). |
Raster |
getData(Rectangle rect)
Computes and returns an arbitrary region of the RenderedImage. |
int |
getHeight()
Returns the height of the RenderedImage. |
int |
getMinTileX()
Returns the minimum tile index in the X direction. |
int |
getMinTileY()
Returns the minimum tile index in the Y direction. |
int |
getMinX()
Returns the minimum X coordinate (inclusive) of the RenderedImage. |
int |
getMinY()
Returns the minimum Y coordinate (inclusive) of the RenderedImage. |
int |
getNumXTiles()
Returns the number of tiles in the X direction. |
int |
getNumYTiles()
Returns the number of tiles in the Y direction. |
Object |
getProperty(String name)
Gets a property from the property set of this image. |
String[] |
getPropertyNames()
Returns an array of names recognized by getProperty(String)
or null , if no property names are recognized. |
SampleModel |
getSampleModel()
Returns the SampleModel associated with this image. |
Vector |
getSources()
Returns a vector of RenderedImages that are the immediate sources of image data for this RenderedImage. |
Raster |
getTile(int tileX,
int tileY)
Returns tile (tileX, tileY). |
int |
getTileGridXOffset()
Returns the X offset of the tile grid relative to the origin, i.e., the X coordinate of the upper-left pixel of tile (0, 0). |
int |
getTileGridYOffset()
Returns the Y offset of the tile grid relative to the origin, i.e., the Y coordinate of the upper-left pixel of tile (0, 0). |
int |
getTileHeight()
Returns the tile height in pixels. |
int |
getTileWidth()
Returns the tile width in pixels. |
int |
getWidth()
Returns the width of the RenderedImage. |
Method Detail |
public Vector getSources()
RenderedImage
objects.public Object getProperty(String name)
name
- the name of the property
Image.UndefinedProperty
public String[] getPropertyNames()
getProperty(String)
or null
, if no property names are recognized.
String
array containing all of the
property names that getProperty(String)
recognizes;
or null
if no property names are recognized.public ColorModel getColorModel()
ColorModel
of this image.public SampleModel getSampleModel()
SampleModel
of this image.public int getWidth()
RenderedImage
.public int getHeight()
RenderedImage
.public int getMinX()
RenderedImage
.public int getMinY()
RenderedImage
.public int getNumXTiles()
public int getNumYTiles()
public int getMinTileX()
public int getMinTileY()
public int getTileWidth()
public int getTileHeight()
public int getTileGridXOffset()
public int getTileGridYOffset()
public Raster getTile(int tileX, int tileY)
tileX
- the X index of the requested tile in the tile arraytileY
- the Y index of the requested tile in the tile array
public Raster getData()
public Raster getData(Rectangle rect)
rect
- the region of the RenderedImage to be returned.
RenderedImage
indicated by the specified Rectangle
.public WritableRaster copyData(WritableRaster raster)
raster
- a WritableRaster to hold the returned portion of the
image, or null.
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.