Searched refs:band (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/print/
H A DRasterPrinterJob.java122 * buffered image "band". 4Mb is a compromise between
198 * Used to minimise GC & reallocation of band when printing
393 * to the current page. The band is placed at the
395 * page. The width and height of the band is
1882 * of each band.
1909 * our maximum band size. The hard coded 3 reflects the
1918 /* The device transform is used to move the band down
1923 * bottom of the band and flips the origin. This way the
1924 * app prints upside down into the band which is the DIB
1932 /* Create a BufferedImage to hold the band
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DMultiPixelPackedSampleModel.java237 * Returns the number of bits per sample for the specified band.
238 * @param band the specified band
239 * @return the number of bits per sample for the specified band.
241 public int getSampleSize(int band) { argument
318 * <code>MultiPixelPackedSampleModel</code> only has one band, the
320 * band.
333 + "only one band.");
340 * Returns as <code>int</code> the sample in a specified band for the
346 * @param b the band t
[all...]
H A DComponentColorModel.java2903 * this <CODE>ColorModel</CODE> store the alpha band, if present, as
2904 * the last band of image data. Returns null if there is no separate spatial
2922 int[] band = new int[1];
2923 band[0] = raster.getNumBands() - 1;
2926 band);
H A DComponentSampleModel.java47 * band interleaving, scanline interleaving, and pixel interleaving.
49 * for the same band on the same scanline. Scanline stride is the number
53 * of the DataBuffer holding each band to the first sample of the band.
81 /** Index for each bank storing a band of image data. */
160 throw new IllegalArgumentException("Must have at least one band.");
188 * @param bandOffsets the band offsets of all bands
269 * Preserves band ordering with new step factor...
320 if (lStride > bStride) { // pix > line > band
326 } else { // pix > band > lin
491 getSampleSize(int band) argument
[all...]
H A DSampleModel.java42 * for one band of an image and a band consists of all samples of a
45 * There are three bands in the image containing this pixel. One band
47 * image. The second band consists of all the green samples and
48 * the remaining band consists of all of the blue samples. The pixel
50 * a particular band can be stored contiguously or all samples from a
894 * Returns the sample in a specified band for the pixel located
900 * @param b The band to return.
902 * @return the sample in a specified band for the specified pixel.
907 * the band inde
1505 getSampleSize(int band) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DBytePackedRaster.java39 * elements. This raster has one band whose pixels are packed
351 * from the data array. The band index will be ignored.
355 * byte[] byteData = getByteData(x, y, band, w, h, null);
363 * @param band The band to return, is ignored.
369 int band, byte[] outData) {
871 * region. The band index will be ignored.
884 * @param band The band to set, is ignored.
888 int band, byt
368 getByteData(int x, int y, int w, int h, int band, byte[] outData) argument
887 putByteData(int x, int y, int w, int h, int band, byte[] inData) argument
[all...]

Completed in 51 milliseconds

12