Lines Matching defs:pixels

39  * image.  The pixels in the source image are blended to produce pixels
43 * size by simply averaging all the pixels in the supersized image that
47 * requestTopDownLeftRightResend() method to refilter the pixels in a
71 * Constructs an AreaAveragingScaleFilter that scales the pixels from
86 * pixels are being filtered. Developers using
87 * this class to filter pixels from an image should avoid calling
135 ColorModel model, Object pixels, int off,
172 if (pixels instanceof byte[]) {
173 rgb = ((byte[]) pixels)[off + sx] & 0xff;
175 rgb = ((int[]) pixels)[off + sx];
231 * Combine the components for the delivered byte pixels into the
233 * pixels that are complete. If the correct hints were not
235 * superclass which is capable of scaling pixels regardless of
240 * whose pixels are being filtered. Developers using
241 * this class to filter pixels from an image should avoid calling
247 ColorModel model, byte pixels[], int off,
250 super.setPixels(x, y, w, h, model, pixels, off, scansize);
252 accumPixels(x, y, w, h, model, pixels, off, scansize);
257 * Combine the components for the delivered int pixels into the
259 * pixels that are complete. If the correct hints were not
261 * superclass which is capable of scaling pixels regardless of
266 * whose pixels are being filtered. Developers using
267 * this class to filter pixels from an image should avoid calling
273 ColorModel model, int pixels[], int off,
276 super.setPixels(x, y, w, h, model, pixels, off, scansize);
278 accumPixels(x, y, w, h, model, pixels, off, scansize);