Lines Matching refs:pixels

36  * to an Image or ImageProducer object to retrieve a subset of the pixels
49 * int[] pixels = new int[w * h];
50 * PixelGrabber pg = new PixelGrabber(img, x, y, w, h, pixels, 0, w);
54 * System.err.println("interrupted waiting for pixels!");
63 * handlesinglepixel(x+i, y+j, pixels[j * w + i]);
98 * section of pixels from the specified image into the given array.
99 * The pixels are stored into the array in the default RGB ColorModel.
104 * @param img the image to retrieve pixels from
106 * of pixels to retrieve from the image, relative to the default
109 * of pixels to retrieve from the image
110 * @param w the width of the rectangle of pixels to retrieve
111 * @param h the height of the rectangle of pixels to retrieve
113 * RGB pixels retrieved from the image
115 * @param scansize the distance from one row of pixels to the next in
125 * section of pixels from the image produced by the specified
127 * The pixels are stored into the array in the default RGB ColorModel.
132 * image from which to retrieve pixels
134 * of pixels to retrieve from the image, relative to the default
137 * of pixels to retrieve from the image
138 * @param w the width of the rectangle of pixels to retrieve
139 * @param h the height of the rectangle of pixels to retrieve
141 * RGB pixels retrieved from the image
143 * @param scansize the distance from one row of pixels to the next in
162 * section of pixels from the specified image. The pixels are
164 * is used for every call to setPixels, otherwise the pixels are
166 * parameter is true, then the pixels will be accumulated in the
168 * PixelGrabber to hold the pixels in either case. If (w < 0) or
173 * of pixels to retrieve from the image, relative to the default
176 * of pixels to retrieve from the image
177 * @param w the width of the rectangle of pixels to retrieve
178 * @param h the height of the rectangle of pixels to retrieve
179 * @param forceRGB true if the pixels should always be converted to
196 * Request the PixelGrabber to start fetching the pixels.
217 * Request the Image or ImageProducer to start delivering pixels and
218 * wait for all of the pixels in the rectangle of interest to be
220 * @return true if the pixels were successfully grabbed, false on
230 * Request the Image or ImageProducer to start delivering pixels and
231 * wait for all of the pixels in the rectangle of interest to be
236 * <li> If <code>ms</code> == 0, waits until all pixels are delivered
237 * <li> If <code>ms</code> > 0, waits until all pixels are delivered
239 * <li> If <code>ms</code> < 0, returns <code>true</code> if all pixels
242 * @param ms the number of milliseconds to wait for the image pixels
244 * @return true if the pixels were successfully grabbed, false on
277 * Return the status of the pixels. The ImageObserver flags
288 * If no width was specified for the rectangle of pixels to grab then
301 * If no width was specified for the rectangle of pixels to grab then
314 * with an explicit pixel buffer to hold the pixels then this method
334 * Get the ColorModel for the pixels stored in the array. If the
344 * objects that was used by the ImageProducer to deliver the pixels.
345 * @return the ColorModel object used for storing the pixels
356 * this class must implement to retrieve the pixels.
359 * of the Image whose pixels are being grabbed. Developers using
360 * this class to retrieve pixels from an image should avoid calling
362 * with retrieving the requested pixels.
386 * this class must implement to retrieve the pixels.
389 * of the Image whose pixels are being grabbed. Developers using
390 * this class to retrieve pixels from an image should avoid calling
392 * with retrieving the requested pixels.
393 * @param hints a set of hints used to process the pixels
401 * this class must implement to retrieve the pixels.
404 * of the Image whose pixels are being grabbed. Developers using
405 * this class to retrieve pixels from an image should avoid calling
407 * with retrieving the requested pixels.
416 * this class must implement to retrieve the pixels.
419 * of the Image whose pixels are being grabbed. Developers using
420 * this class to retrieve pixels from an image should avoid calling
422 * with retrieving the requested pixels.
451 * this class must implement to retrieve the pixels.
454 * of the Image whose pixels are being grabbed. Developers using
455 * this class to retrieve pixels from an image should avoid calling
457 * with retrieving the requested pixels.
459 * of the area of pixels to be set
461 * of the area of pixels to be set
462 * @param srcW the width of the area of pixels
463 * @param srcH the height of the area of pixels
465 * @param pixels the array of pixels
466 * @param srcOff the offset into the pixels array
467 * @param srcScan the distance from one row of pixels to the next
468 * in the pixels array
473 byte pixels[], int srcOff, int srcScan) {
516 System.arraycopy(pixels, srcOff, bytePixels, dstPtr, srcW);
527 intPixels[dstPtr++] = model.getRGB(pixels[srcOff++]&0xff);
538 * this class must implement to retrieve the pixels.
541 * of the Image whose pixels are being grabbed. Developers using
542 * this class to retrieve pixels from an image should avoid calling
544 * with retrieving the requested pixels.
546 * of the area of pixels to be set
548 * of the area of pixels to be set
549 * @param srcW the width of the area of pixels
550 * @param srcH the height of the area of pixels
552 * @param pixels the array of pixels
553 * @param srcOff the offset into the pixels array
554 * @param srcScan the distance from one row of pixels to the next
555 * in the pixels array
560 int pixels[], int srcOff, int srcScan) {
604 System.arraycopy(pixels, srcOff, intPixels, dstPtr, srcW);
616 intPixels[dstPtr++] = model.getRGB(pixels[srcOff++]);
627 * this class must implement to retrieve the pixels.
630 * of the Image whose pixels are being grabbed. Developers using
631 * this class to retrieve pixels from an image should avoid calling
633 * with retrieving the requested pixels.
658 * Returns the status of the pixels. The ImageObserver flags