Changed Methods |
void setData(Raster )
|
Documentation changed from old to new. |
Sets a rectangular region of the image to the contents of the specified Raster r which is assumed to be in the same coordinate space as the BufferedImage . |
Raster getData()
|
Documentation changed from old to new. |
Returns the image as one large tile. |
Raster getData(Rectangle )
|
Documentation changed from old to new. |
Computes and returns an arbitrary region of the BufferedImage . |
int getRGB(int, int)
|
Documentation changed from old to new. |
Returns an integer pixel in the default RGB color model (TYPE_INT_ARGB) and default sRGB colorspace. |
int[] getRGB(int, int, int, int, int[], int, int)
|
Documentation changed from old to new. |
Returns an array of integer pixels in the default RGB color model (TYPE_INT_ARGB) and default sRGB color space from a portion of the image data. |
void setRGB(int, int, int)
|
Documentation changed from old to new. |
Sets a pixel in this BufferedImage to the specified RGB value. |
void setRGB(int, int, int, int, int[], int, int)
|
Documentation changed from old to new. |
Sets an array of integer pixels in the default RGB color model (TYPE_INT_ARGB) and default sRGB color space into a portion of the image data. |