Searched refs:destHeight (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DReplicateScaleFilter.java71 protected int destHeight; field in class:ReplicateScaleFilter
107 destHeight = height;
126 String val = destWidth + "x" + destHeight;
151 if (destHeight < 0) {
153 destHeight = srcHeight;
155 destWidth = srcWidth * destHeight / srcHeight;
157 } else if (destHeight < 0) {
158 destHeight = srcHeight * destWidth / srcWidth;
160 consumer.setDimensions(destWidth, destHeight);
164 srcrows = new int[destHeight
[all...]
H A DAreaAveragingScaleFilter.java141 int syrem = destHeight;
221 syrem = destHeight;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageWriter.java885 int destHeight = destSize.height;
925 int progressReportRowPeriod = Math.max(destHeight/20, 1);
944 0, 8, destWidth, destHeight,
951 numRowsWritten += destHeight/8;
954 4, 8, destWidth, destHeight,
961 numRowsWritten += (destHeight - 4)/8;
964 2, 4, destWidth, destHeight,
971 numRowsWritten += (destHeight - 2)/4;
974 1, 2, destWidth, destHeight,
981 0, 8, destWidth, destHeight,
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java1084 int destHeight = (sourceHeight + periodY - 1)/periodY;
1085 if (destWidth <= 0 || destHeight <= 0) {
1090 this.totalPixels = destWidth*destHeight;
1122 metadata.IHDR_height = destHeight;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrinterJob.java1174 * <code>destHeight</code>. The portion of the
1181 float destWidth, float destHeight,
1188 destWidth, destHeight,
1212 float destWidth, float destHeight,
1232 destWidth, destHeight,
1506 * <code>destHeight</code>. The portion of the
1516 float destWidth, float destHeight,
1179 drawImage3ByteBGR(byte[] image, float destX, float destY, float destWidth, float destHeight, float srcX, float srcY, float srcWidth, float srcHeight) argument
1210 drawDIBImage(byte[] image, float destX, float destY, float destWidth, float destHeight, float srcX, float srcY, float srcWidth, float srcHeight, int sampleBitsPerPixel, IndexColorModel icm) argument
1514 drawDIBImage(long printDC, byte[] image, float destX, float destY, float destWidth, float destHeight, float srcX, float srcY, float srcWidth, float srcHeight, int bitCount, byte[] bmiColors) argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageWriter.java1027 int destHeight = (sourceHeight + periodY - 1)/periodY;
1064 destWidth, destHeight,
1678 int destWidth, int destHeight,
1672 writeImage(long structPointer, byte [] data, int inCsType, int outCsType, int numBands, int [] bandSizes, int srcWidth, int destWidth, int destHeight, int stepX, int stepY, JPEGQTable [] qtables, boolean writeDQT, JPEGHuffmanTable[] DCHuffmanTables, JPEGHuffmanTable[] ACHuffmanTables, boolean writeDHT, boolean optimizeHuffman, boolean progressive, int numScans, int [] scans, int [] componentIds, int [] HsamplingFactors, int [] VsamplingFactors, int [] QtableSelectors, boolean haveMetadata, int restartInterval) argument
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageReader.java2894 int destHeight = destRegion.y + destRegion.height;
2896 return imageType.createBufferedImage(destWidth, destHeight);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp1467 jint destX, jint destY, jint destWidth, jint destHeight) {
1470 srcWidth <= 0 || srcHeight == 0 || destWidth == 0 || destHeight <=0) {
1477 * original form of PatBlit(hDC, destX,destY,destWidth, destHeight ..)
1489 // ::PatBlt(hDC, destX+1, destY+1, destWidth-2, destHeight-2, PATCOPY);
1514 destHeight, // height of dest rect
1525 fprintf(file,"sh=%d dh=%d sy=%d dy=%d result=%d\n", srcHeight, destHeight, srcY, destY, result);
2546 jfloat destWidth, jfloat destHeight,
2606 ROUND_TO_LONG(destHeight),
2638 jfloat destWidth, jfloat destHeight,
2698 ROUND_TO_LONG(destHeight),
1464 Java_sun_awt_windows_WEmbeddedFrame_printBand(JNIEnv *env, jobject self, jlong theHDC, jbyteArray imageArray, jint offset, jint srcX, jint srcY, jint srcWidth, jint srcHeight, jint destX, jint destY, jint destWidth, jint destHeight) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c2596 jint destWidth, jint destHeight,
2662 (destHeight < 0) ||
2761 cinfo->image_height = destHeight;
2892 // for each line in destHeight
2587 Java_com_sun_imageio_plugins_jpeg_JPEGImageWriter_writeImage(JNIEnv *env, jobject this, jlong ptr, jbyteArray buffer, jint inCs, jint outCs, jint numBands, jintArray bandSizes, jint srcWidth, jint destWidth, jint destHeight, jint stepX, jint stepY, jobjectArray qtables, jboolean writeDQT, jobjectArray DCHuffmanTables, jobjectArray ACHuffmanTables, jboolean writeDHT, jboolean optimize, jboolean progressive, jint numScans, jintArray scanInfo, jintArray componentIds, jintArray HsamplingFactors, jintArray VsamplingFactors, jintArray QtableSelectors, jboolean haveMetadata, jint restartInterval) argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java859 * <code>destHeight</code>. The portion of the
866 float destWidth, float destHeight,
894 + "0 " + destHeight
864 drawImageBGR(byte[] bgrData, float destX, float destY, float destWidth, float destHeight, float srcX, float srcY, float srcWidth, float srcHeight, int srcBitMapWidth, int srcBitMapHeight) argument

Completed in 79 milliseconds