Example usage for Java java.awt.image ComponentSampleModel fields, constructors, methods, implement or subclass
The text is from its open source code.
ComponentSampleModel(int dataType, int w, int h, int pixelStride, int scanlineStride, int[] bandOffsets) Constructs a ComponentSampleModel with the specified parameters. |
int[] | getBandOffsets() Returns the band offset for all bands. |
int[] | getBankIndices() Returns the bank indices for all bands. |
int | getHeight() Returns the height in pixels. |
int | getOffset(int x, int y) Gets the offset for the first band of pixel (x,y). |
int | getPixelStride() Returns the pixel stride of this ComponentSampleModel. |
int | getScanlineStride() Returns the scanline stride of this ComponentSampleModel. |
int | getWidth() Returns the width in pixels. |