Lines Matching defs:height

59  * minY, width, and height values.  The minX and minY values define
94 * bounding rectangle of the same width and height but with a
146 /** The height of this Raster. */
147 protected int height;
178 * specified data type, width, height, and number of bands.
193 * @param h the height in pixels of the image data
197 * width, height and number of bands.
218 * specified data type, width, height, scanline stride, pixel
235 * @param h the height 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.
295 * @param h the height in pixels of the image data
299 * width, height and number of bands.
331 * specified data type, width, height, scanline stride, bank
344 * @param h the height 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.
435 * @param h the height in pixels of the image data
439 * width, height, and band masks.
480 * specified data type, width, height, number of bands, and bits
499 * @param h the height in pixels of the image data
504 * width, height, number of bands, and bits per band.
594 * specified DataBuffer, width, height, scanline stride, pixel
606 * @param h the height in pixels of the image data
612 * <code>DataBuffer</code>, width, height, scanline stride,
661 * specified DataBuffer, width, height, scanline stride, bank
669 * @param h the height in pixels of the image data
675 * <code>DataBuffer</code>, width, height, scanline stride,
732 * the specified DataBuffer, width, height, scanline stride, and
739 * @param h the height 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
801 * @param h the height in pixels of the image data
805 * <code>DataBuffer</code>, width, height, and
1082 * or height less than or equal to zero, or computing either
1084 * <code>aRegion.y + aRegion.height</code> results in integer
1103 height = aRegion.height;
1104 if (width <= 0 || height <= 0) {
1106 ((width <= 0) ? "width" : "height"));
1112 if ((minY + height) < minY) {
1172 * @param h the specified height 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
1198 * or height less than or equal to zero, or computing either
1200 * <code>rect.y + rect.height</code> results in integer
1209 rect.width, rect.height);
1214 * location (minX, minY) and size (width, height), a
1221 * @param h the specified height of the <code>WritableRaster</code>
1255 return createChild(minX,minY,width,height,
1264 * <p> The parentX, parentY, width and height parameters
1294 * @param height Height of the region starting at (parentX, parentY).
1304 * <code>height</code>
1306 * <code>parentX + width</code>, <code>parentY + height</code>,
1308 * <code>childMinY + height</code> results in integer
1312 int width, int height,
1325 if ((parentY + height < parentY) ||
1326 (parentY + height > this.height + this.minY)) {
1327 throw new RasterFormatException("(parentY + height) is outside raster");
1332 // width and height as that for the parent, since it represents
1334 // and height represent a "virtual" view of the pixel data, so
1346 new Rectangle(childMinX, childMinY, width, height),
1357 return new Rectangle(minX, minY, width, height);
1381 /** Returns the height in pixels of the Raster.
1382 * @return the height of this <code>Raster</code>.
1385 return height;