Lines Matching defs:pixels

33  * the pixels of an image in the default RGB ColorModel.  It is meant to
37 * single method which converts pixels one at a time in the default RGB
106 * <code>ImageProducer</code> of the <code>Image</code> whose pixels
108 * this class to filter pixels from an image should avoid calling
127 * is substituted and the pixels passed through
179 * Filters a buffer of pixels in the default RGB ColorModel by passing
182 * of pixels
184 * of pixels
185 * @param w the width of the region of pixels
186 * @param h the height of the region of pixels
187 * @param pixels the array of pixels
188 * @param off the offset into the <code>pixels</code> array
189 * @param scansize the distance from one row of pixels to the next
195 int pixels[], int off, int scansize) {
199 pixels[index] = filterRGB(x + cx, y + cy, pixels[index]);
205 pixels, off, scansize);
210 * been converted, then simply passes the pixels through with the
212 * pixels to the default RGB ColorModel and passes the converted
216 * <code>ImageProducer</code> of the <code>Image</code> whose pixels
218 * this class to filter pixels from an image should avoid calling
225 ColorModel model, byte pixels[], int off,
228 consumer.setPixels(x, y, w, h, newmodel, pixels, off, scansize);
234 filteredpixels[cx] = model.getRGB((pixels[index] & 0xff));
245 * been converted, then simply passes the pixels through with the
247 * pixels to the default RGB ColorModel and passes the converted
249 * Converts a buffer of integer pixels to the default RGB ColorModel
253 * <code>ImageProducer</code> of the <code>Image</code> whose pixels
255 * this class to filter pixels from an image should avoid calling
262 ColorModel model, int pixels[], int off,
265 consumer.setPixels(x, y, w, h, newmodel, pixels, off, scansize);
271 filteredpixels[cx] = model.getRGB(pixels[index]);