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

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageWriter.java121 private int sourceHeight = 0; field in class:JPEGImageWriter
536 sourceHeight = imageHeight;
555 sourceHeight);
560 sourceHeight = sourceRegion.height;
566 if (sourceHeight + sourceYOffset > imageHeight) {
567 sourceHeight = imageHeight - sourceYOffset;
1024 sourceHeight -= gridY;
1027 int destHeight = (sourceHeight + periodY - 1)/periodY;
1794 processImageProgress((float) y / (float) sourceHeight * 100.0F);
H A DJPEGImageReader.java1394 int sourceWidth, int sourceHeight,
1388 readImage(long structPointer, byte [] buffer, int numRasterBands, int [] srcBands, int [] bandSizes, int sourceXOffset, int sourceYOffset, int sourceWidth, int sourceHeight, int periodX, int periodY, JPEGQTable [] abbrevQTables, JPEGHuffmanTable [] abbrevDCHuffmanTables, JPEGHuffmanTable [] abbrevACHuffmanTables, int minProgressivePass, int maxProgressivePass, boolean wantUpdates) argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java288 int sourceHeight = 0; field in class:PNGImageWriter
769 int height = sourceHeight;
1042 this.sourceHeight = im.getHeight();
1060 sourceHeight = sourceRegion.height;
1069 sourceHeight -= gridY;
1084 int destHeight = (sourceHeight + periodY - 1)/periodY;
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c1801 jint sourceHeight,
1852 (sourceHeight < 1) || (sourceHeight > (jint)cinfo->image_height) ||
2016 scanlineLimit = sourceYStart+sourceHeight;
1790 Java_com_sun_imageio_plugins_jpeg_JPEGImageReader_readImage(JNIEnv *env, jobject this, jlong ptr, jbyteArray buffer, jint numBands, jintArray srcBands, jintArray bandSizes, jint sourceXStart, jint sourceYStart, jint sourceWidth, jint sourceHeight, jint stepX, jint stepY, jobjectArray qtables, jobjectArray DCHuffmanTables, jobjectArray ACHuffmanTables, jint minProgressivePass, jint maxProgressivePass, jboolean wantUpdates) argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageWriter.java882 int sourceHeight = sourceBounds.height;

Completed in 42 milliseconds