Lines Matching defs:width

59  * minY, width, and height values.  The minX and minY values define
94 * bounding rectangle of the same width and height but with a
143 /** The width of this Raster. */
144 protected int width;
178 * specified data type, width, height, and number of bands.
192 * @param w the width in pixels of the image data
197 * width, height and number of bands.
218 * specified data type, width, height, scanline stride, pixel
234 * @param w the width in pixels of the image data
241 * width, height, scanline stride, pixel stride and band
284 * specified data type, width, height, and number of bands.
294 * @param w the width in pixels of the image data
299 * width, height and number of bands.
331 * specified data type, width, height, scanline stride, bank
343 * @param w the width in pixels of the image data
350 * width, height, scanline stride, bank indices and band
423 * the specified data type, width, height, and band masks.
434 * @param w the width in pixels of the image data
439 * width, height, and band masks.
480 * specified data type, width, height, number of bands, and bits
498 * @param w the width in pixels of the image data
504 * width, height, number of bands, and bits per band.
594 * specified DataBuffer, width, height, scanline stride, pixel
605 * @param w the width in pixels of the image data
612 * <code>DataBuffer</code>, width, height, scanline stride,
661 * specified DataBuffer, width, height, scanline stride, bank
668 * @param w the width in pixels of the image data
675 * <code>DataBuffer</code>, width, height, scanline stride,
732 * the specified DataBuffer, width, height, scanline stride, and
738 * @param w the width in pixels of the image data
744 * <code>DataBuffer</code>, width, height, scanline stride,
795 * specified DataBuffer, width, height, and bits per pixel. The upper
800 * @param w the width in pixels of the image data
805 * <code>DataBuffer</code>, width, height, and
1081 * @throws RasterFormatException if <code>aRegion</code> has width
1083 * <code>aRegion.x + aRegion.width</code> or
1102 width = aRegion.width;
1104 if (width <= 0 || height <= 0) {
1106 ((width <= 0) ? "width" : "height"));
1108 if ((minX + width) < minX) {
1171 * @param w the specified width of the new <code>WritableRaster</code>
1175 * @exception RasterFormatException if the width or height is less than
1181 ((w <= 0) ? "width" : "height"));
1191 * and size (width, height) specified by rect, a
1197 * @throws RasterFormatException if <code>rect</code> has width
1199 * <code>rect.x + rect.width</code> or
1209 rect.width, rect.height);
1214 * location (minX, minY) and size (width, height), a
1220 * @param w the specified width of the <code>WritableRaster</code>
1255 return createChild(minX,minY,width,height,
1264 * <p> The parentX, parentY, width and height parameters
1293 * @param width Width of the region starting at (parentX, parentY)
1303 * @throws RasterFormatException if <code>width</code> or
1306 * <code>parentX + width</code>, <code>parentY + height</code>,
1307 * <code>childMinX + width</code>, or
1312 int width, int height,
1321 if ((parentX + width < parentX) ||
1322 (parentX + width > this.width + this.minX)) {
1323 throw new RasterFormatException("(parentX + width) is outside raster");
1332 // width and height as that for the parent, since it represents
1333 // the physical layout of the pixel data. The child Raster's width
1346 new Rectangle(childMinX, childMinY, width, height),
1357 return new Rectangle(minX, minY, width, height);
1374 /** Returns the width in pixels of the Raster.
1375 * @return the width of this <code>Raster</code>.
1378 return width;