Lines Matching refs:height
65 /** A cached copy of minY + height for use in bounds checks. */
135 this.maxY = minY + height;
271 * @param height Height of the pixel rectangle.
324 * @param height Height of the pixel rectangle.
372 * @param height Height of the pixel rectangle.
445 int height = inRaster.getHeight();
447 (dstOffX + width > this.maxX) || (dstOffY + height > this.maxY)) {
452 setDataElements(dstOffX, dstOffY, width, height, inRaster);
464 * @param height The number of pixels to store vertically
468 int width, int height,
471 if (width <= 0 || height <= 0) {
483 for (int startY=0; startY < height; startY++) {
639 * @param height Height of the subraster.
647 int width, int height,
660 if ((y+height < y) || (y+height > this.height + this.minY)) {
661 throw new RasterFormatException("(y + height) is outside raster");
676 new Rectangle(x0,y0,width,height),
694 * @param height Height (in pixels) of the subraster.
702 int width, int height,
705 return createWritableChild(x, y, width, height, x0, y0, bandList);
710 * width and height, and with new zeroed data arrays.
715 ((w <= 0) ? "width" : "height"));
725 * width and height, and with new zeroed data arrays. If
727 * createCompatibleRaster(width, height).
730 return createCompatibleWritableRaster(width, height);
744 if (width <= 0 || height <= 0 ||
745 height > (Integer.MAX_VALUE / width))
751 scanlineStride > (Integer.MAX_VALUE / height))
774 int lastScanOffset = (height - 1) * scanlineStride;
816 return new String ("ByteBandedRaster: width = "+width+" height = "
817 + height