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

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPImageReader.java201 Rectangle destinationRegion = new Rectangle(0, 0, 0, 0);
206 destinationRegion);
217 bi = new BufferedImage(destinationRegion.x + destinationRegion.width,
218 destinationRegion.y + destinationRegion.height,
222 destinationRegion.equals(new Rectangle(0, 0, width, height)) &&
223 destinationRegion.equals(new Rectangle(0, 0, bi.getWidth(), bi.getHeight()));
255 int[] srcOff = new int[destinationRegion.width];
256 int[] destOff = new int[destinationRegion
[all...]
H A DWBMPImageWriter.java194 Rectangle destinationRegion = new Rectangle(minX, minY, w, h);
209 if (!destinationRegion.equals(sourceRegion)) {
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java136 private Rectangle destinationRegion; field in class:BMPImageReader
711 destinationRegion = new Rectangle(0, 0, 0, 0);
716 destinationRegion);
727 destinationRegion.equals(new Rectangle(0, 0, width, height)) ||
746 sampleModel.createCompatibleSampleModel(destinationRegion.x +
747 destinationRegion.width,
748 destinationRegion.y +
749 destinationRegion.height);
760 noTransform &= destinationRegion.equals(raster.getBounds());
962 destinationRegion
[all...]
H A DBMPImageWriter.java243 Rectangle destinationRegion = new Rectangle(minX, minY, w, h);
244 boolean noTransform = destinationRegion.equals(sourceRegion);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java366 Rectangle destinationRegion; field in class:GIFImageReader
380 destinationRegion.width*sourceXSubsampling);
381 int destX = destinationRegion.x;
405 (destY < destinationRegion.y + destinationRegion.height) &&
455 this.destY = destinationRegion.y +
791 destinationRegion.x,
792 destinationRegion.y,
793 destinationRegion.x +
794 destinationRegion
[all...]

Completed in 40 milliseconds