Lines Matching refs:band

47  * IndexColorModel if there is only one band.
56 /** private band offset for use by native code */
59 /** Data offsets for each band of image data. */
205 * Returns a copy of the data offsets array. For each band the data offset
206 * is the index into the band's data array, of the first sample of the
207 * band.
214 * Returns the data offset for the specified band. The data offset
217 * @param band The band whose offset is returned.
219 public int getDataOffset(int band) {
220 return dataOffsets[band];
226 * same band.
234 * samples for the same band on the same scanline.
278 for (int band = 0; band < numDataElements; band++) {
279 outData[band] = data[dataOffsets[band] + off];
345 * region for the specified band.
357 * @param band The band to return.
363 int band, byte[] outData) {
364 // Bounds check for 'band' will be performed automatically
374 (x-minX)*pixelStride + dataOffsets[band];
572 * for the nth band at location (x2, y2) would be found at:
628 * region for the specified band.
641 * @param band The band to set.
645 int band, byte[] inData) {
646 // Bounds check for 'band' will be performed automatically
653 (x-minX)*pixelStride + dataOffsets[band];
689 * for the nth band at location (x2, y2) would be found at:
765 * @param bandList Array of band indices.
794 * @param bandList Array of band indices.
882 throw new RasterFormatException("Data offsets for band " + i
919 throw new RasterFormatException("Incorrect band offset: "
945 // * For debugging... prints a region of a one-band ByteComponentRaster
948 // // REMIND: Only works for 1 band!