Lines Matching defs:pixels

58      * the pixels reported using the setPixels method
59 * calls. Note that each set of pixels delivered using setPixels
63 * may be seen is a filtered image when for each set of pixels
66 * pixels can be sent on untouched, using the original ColorModel,
67 * or whether the pixels should be modified (filtered) and passed
76 * pixels delivered by the ImageProducer.
77 * The ImageProducer can deliver the pixels in any order, but
78 * the ImageConsumer may be able to scale or convert the pixels
80 * quality if it knows some information about how the pixels will
83 * of hints about the manner in which the pixels will be delivered.
87 * process the pixels
92 * The pixels will be delivered in a random order. This tells the
101 * The pixels will be delivered in top-down, left-to-right order.
107 * The pixels will be delivered in (multiples of) complete scanlines
114 * The pixels will be delivered in a single pass. Each pixel will
117 * is a progressive JPEG image which defines pixels in multiple
124 * The image contain a single static image. The pixels will be defined
138 * Delivers the pixels of the image with one or more calls
140 * size of the rectangle of source pixels that are contained in
141 * the array of pixels. The specified ColorModel object should
142 * be used to convert the pixels into their corresponding color
143 * and alpha components. Pixel (m,n) is stored in the pixels array
144 * at index (n * scansize + m + off). The pixels delivered using
147 * area of pixels to be set
149 * area of pixels to be set
150 * @param w the width of the area of pixels
151 * @param h the height of the area of pixels
153 * @param pixels the array of pixels
154 * @param off the offset into the <code>pixels</code> array
155 * @param scansize the distance from one row of pixels to the next in
156 * the <code>pixels</code> array
160 ColorModel model, byte pixels[], int off, int scansize);
163 * The pixels of the image are delivered using one or more calls
165 * size of the rectangle of source pixels that are contained in
166 * the array of pixels. The specified ColorModel object should
167 * be used to convert the pixels into their corresponding color
168 * and alpha components. Pixel (m,n) is stored in the pixels array
169 * at index (n * scansize + m + off). The pixels delivered using
173 * area of pixels to be set
175 * area of pixels to be set
176 * @param w the width of the area of pixels
177 * @param h the height of the area of pixels
179 * @param pixels the array of pixels
180 * @param off the offset into the <code>pixels</code> array
181 * @param scansize the distance from one row of pixels to the next in
182 * the <code>pixels</code> array
186 ColorModel model, int pixels[], int off, int scansize);
190 * finished delivering all of the pixels that the source image
215 * The image is complete and there are no more pixels or frames