Searched defs:tileHeight (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageWriteParam.java247 protected int tileHeight = 0; field in class:ImageWriteParam
549 * The <code>tileWidth</code> and <code>tileHeight</code>
559 * @param tileHeight the height of each tile.
573 * or <code>tileHeight</code> is less than or equal to 0.
583 int tileHeight,
592 if (tileWidth <= 0 || tileHeight <= 0) {
607 (tileHeight < min.height) ||
608 (tileHeight > max.height)) {
620 this.tileHeight = tileHeight;
582 setTiling(int tileWidth, int tileHeight, int tileGridXOffset, int tileGridYOffset) argument
[all...]

Completed in 31 milliseconds