Java java.awt.image RenderedImage fields, constructors, methods, implement or subclass

Example usage for Java java.awt.image RenderedImage fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.awt.image RenderedImage.

The text is from its open source code.

Implementation

java.awt.image.RenderedImage has the following implementations.
Click this link to see all its implementation.

Method

WritableRastercopyData(WritableRaster raster)
Computes an arbitrary rectangular region of the RenderedImage and copies it into a caller-supplied WritableRaster.
ClassgetClass()
Returns the runtime class of this Object .
ColorModelgetColorModel()
Returns the ColorModel associated with this image.
RastergetData()
Returns the image as one large tile (for tile based images this will require fetching the whole image and copying the image data over).
RastergetData(Rectangle rect)
Computes and returns an arbitrary region of the RenderedImage.
intgetHeight()
Returns the height of the RenderedImage.
intgetMinTileX()
Returns the minimum tile index in the X direction.
intgetMinTileY()
Returns the minimum tile index in the Y direction.
intgetMinX()
Returns the minimum X coordinate (inclusive) of the RenderedImage.
intgetNumXTiles()
Returns the number of tiles in the X direction.
intgetNumYTiles()
Returns the number of tiles in the Y direction.
ObjectgetProperty(String name)
Gets a property from the property set of this image.
String[]getPropertyNames()
Returns an array of names recognized by #getProperty(String) getProperty(String) or null , if no property names are recognized.
SampleModelgetSampleModel()
Returns the SampleModel associated with this image.
VectorgetSources()
Returns a vector of RenderedImages that are the immediate sources of image data for this RenderedImage.
RastergetTile(int tileX, int tileY)
Returns tile (tileX, tileY).
intgetTileGridXOffset()
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).
intgetTileGridYOffset()
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).
intgetTileHeight()
Returns the tile height in pixels.
intgetTileWidth()
Returns the tile width in pixels.
intgetWidth()
Returns the width of the RenderedImage.
StringtoString()
Returns a string representation of the object.