| java.lang.Object com.sun.perseus.j2d.RasterImage
RasterImage | public class RasterImage (Code) | | Class for 2D Raster Images.
version: $Id: RasterImage.java,v 1.4 2006/04/21 06:34:58 st125089 Exp $ |
Method Summary | |
public int | getHeight() | public int[] | getRGB() a pixel array where the image data is stored in single pixel packed format 0xaarrggbb, with a scanline stride equal to the image width and azero offset in the returned array. | public int | getWidth() |
argb | int[] argb(Code) | | The cached pixel array.
|
getHeight | public int getHeight()(Code) | | the image height. |
getRGB | public int[] getRGB()(Code) | | a pixel array where the image data is stored in single pixel packed format 0xaarrggbb, with a scanline stride equal to the image width and azero offset in the returned array. The returnedarray is of size width * height. |
getWidth | public int getWidth()(Code) | | the image width. |
|
|