Searched refs:dstMinY (Results 1 - 5 of 5) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DReaderUtil.java150 * @param dstMinY the smallest Y coordinate (inclusive) of the
178 int dstMinY,
198 dstMinY, dstMaxY, sourceYSubsampling,
175 computeUpdatedPixels(Rectangle sourceRegion, Point destinationOffset, int dstMinX, int dstMinY, int dstMaxX, int dstMaxY, int sourceXSubsampling, int sourceYSubsampling, int passXStart, int passYStart, int passWidth, int passHeight, int passPeriodX, int passPeriodY) argument
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFImageReader.java125 private int dstMinY; field in class:TIFFImageReader
1050 dstMinY = iceil(srcMinY - sourceYOffset, srcYSubsampling);
1055 dstHeight = dstMaxY - dstMinY + 1;
1058 dstMinY += dstYOffset;
1061 Rectangle dstRect = new Rectangle(dstMinX, dstMinY,
1067 dstMinY = dstRect.y;
1084 int activeSrcMinY = (dstMinY - dstYOffset) * srcYSubsampling
1087 = (dstMinY + dstHeight - 1 - dstYOffset) * srcYSubsampling
1097 decompressor.setDstMinY(dstMinY);
1133 dstMinX, dstMinY, dstWidt
[all...]
H A DTIFFDecompressor.java335 protected int dstMinY; field in class:TIFFDecompressor
356 * {@code dstMinY}).
1665 * Sets the value of the {@code dstMinY} field.
1671 * @param dstMinY the minimum Y coordinate of the destination
1674 public void setDstMinY(int dstMinY) { argument
1675 this.dstMinY = dstMinY;
2280 ((dstMinY + dstHeight) <= image.getHeight()) &&
2338 * {@code dstMinY}, {@code dstWidth}, and
2353 * {@code dstMinY})
[all...]
H A DTIFFYCbCrDecompressor.java297 public void setDstMinY(int dstMinY) { argument
299 decompressor.setDstMinY(dstMinY);
301 super.setDstMinY(dstMinY);
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java968 int dstMinY = imRas.getMinY();
969 int dstMaxY = dstMinY + imRas.getHeight() - 1;
975 dstMinX, dstMinY,
1181 if (dstY < dstMinY) {

Completed in 308 milliseconds