Lines Matching defs:width

552      * Returns the width in pixels of the given image within the input
556 * this method returns the default width.
560 * @return the width of the image, as an <code>int</code>.
565 * @exception IOException if an error occurs reading the width
633 * Returns the aspect ratio of the given image (that is, its width
636 * determine the appropriate width given a deired height, or vice
637 * versa. For non-resizable images, the true width and height
995 * have a width or height less than 1.
1058 * would have a width or height less than 1.
1150 * have a width or height less than 1.
1329 * Returns the width of a tile in the given image.
1336 * @return the width of a tile.
1443 * <code>tileY*getTileHeight(imageIndex)</code> and width and
1571 * would have a width or height less than 1.
1656 * Returns the width of the thumbnail preview image indexed by
1674 * @return the width of the desired thumbnail as an <code>int</code>.
2232 * @param width the total width of the area being updated, including
2243 int width, int height,
2256 width, height,
2336 * @param width the total width of the area being updated, including
2347 int width, int height,
2360 width, height,
2553 * @param srcWidth the width of the source image.
2572 sourceRegion.width -= subsampleXOffset;
2581 * region of interest, taking the width and height of the source
2601 * width or height of 0, an <code>IllegalArgumentException</code>
2608 * @param srcWidth the width of the source image.
2658 srcRegion.width -= gridX;
2668 srcRegion.width -= delta;
2678 // Now clip the destination Region to the subsampled width and height
2679 int subsampledWidth = (srcRegion.width + periodX - 1)/periodX;
2681 destRegion.width = subsampledWidth;
2698 srcRegion.width -= deltaX*periodX;
2804 * to <code>computeRegions</code>. The actual width and height of
2805 * the image being decoded are passed in as the <code>width</code>
2813 * @param width the true width of the image or tile begin decoded.
2814 * @param height the true width of the image or tile being decoded.
2826 * have a width or height less than 1.
2828 * <code>width</code> and <code>height</code> is greater than
2834 int width, int height)
2839 if ((long)width*height > Integer.MAX_VALUE) {
2841 ("width*height > Integer.MAX_VALUE!");
2887 width,
2893 int destWidth = destRegion.x + destRegion.width;