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

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageWriter.java119 private int sourceWidth = 0; field in class:JPEGImageWriter
535 sourceWidth = imageWidth;
554 sourceWidth,
559 sourceWidth = sourceRegion.width;
563 if (sourceWidth + sourceXOffset > imageWidth) {
564 sourceWidth = imageWidth - sourceXOffset;
1022 sourceWidth -= gridX;
1026 int destWidth = (sourceWidth + periodX - 1)/periodX;
1030 int lineSize = sourceWidth*numBandsUsed;
1038 sourceWidth,
[all...]
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/gif/
H A DGIFImageWriter.java881 int sourceWidth = sourceBounds.width;
980 sourceWidth,
992 sourceWidth,
1004 sourceWidth,
1016 sourceWidth,
1038 sourceWidth,
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java287 int sourceWidth = 0; field in class:PNGImageWriter
768 int width = sourceWidth;
1041 this.sourceWidth = im.getWidth();
1059 sourceWidth = sourceRegion.width;
1068 sourceWidth -= gridX;
1083 int destWidth = (sourceWidth + periodX - 1)/periodX;
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c1800 jint sourceWidth,
1851 (sourceWidth < 1) || (sourceWidth > (jint)cinfo->image_width) ||
2018 +(sourceXStart+sourceWidth)*cinfo->output_components;
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

Completed in 59 milliseconds