| com.sun.pisces.Surface
All known Subclasses: com.sun.pisces.AbstractSurface,
Surface | public interface Surface (Code) | | |
Field Summary | |
final public static int | TYPE_BYTE_GRAY Constant indicating 8 bit grayscale pixel data stored in a
byte array. | final public static int | TYPE_INT_ARGB Constant indicating 8/8/8/8 ARGB pixel data stored in an
int array. | final public static int | TYPE_INT_ARGB_PRE Constant indicating 8/8/8/8 ARGB alpha-premultiplied pixel data stored
in a int array. | final public static int | TYPE_INT_RGB Constant indicating 8/8/8 RGB pixel data stored in an
int array. | final public static int | TYPE_USHORT_565_RGB Constant indicating 5/6/5 RGB pixel data stored in an
short array. |
Method Summary | |
public SurfaceDestination | createSurfaceDestination() | public int | getHeight() | public void | getRGB(int[] argb, int offset, int scanLength, int x, int y, int width, int height) | public int | getWidth() | public void | setRGB(int[] argb, int offset, int scanLength, int x, int y, int width, int height) |
TYPE_BYTE_GRAY | final public static int TYPE_BYTE_GRAY(Code) | | Constant indicating 8 bit grayscale pixel data stored in a
byte array.
|
TYPE_INT_ARGB | final public static int TYPE_INT_ARGB(Code) | | Constant indicating 8/8/8/8 ARGB pixel data stored in an
int array.
|
TYPE_INT_ARGB_PRE | final public static int TYPE_INT_ARGB_PRE(Code) | | Constant indicating 8/8/8/8 ARGB alpha-premultiplied pixel data stored
in a int array.
|
TYPE_INT_RGB | final public static int TYPE_INT_RGB(Code) | | Constant indicating 8/8/8 RGB pixel data stored in an
int array.
|
TYPE_USHORT_565_RGB | final public static int TYPE_USHORT_565_RGB(Code) | | Constant indicating 5/6/5 RGB pixel data stored in an
short array.
|
getHeight | public int getHeight()(Code) | | |
getRGB | public void getRGB(int[] argb, int offset, int scanLength, int x, int y, int width, int height)(Code) | | |
getWidth | public int getWidth()(Code) | | |
setRGB | public void setRGB(int[] argb, int offset, int scanLength, int x, int y, int width, int height)(Code) | | |
|
|