Searched defs:cropX (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DCropImageFilter.java47 int cropX; field in class:CropImageFilter
62 cropX = x;
83 p.put("croprect", new Rectangle(cropX, cropY, cropW, cropH));
119 if (x1 < cropX) {
120 x1 = cropX;
123 if (x2 > cropX + cropW) {
124 x2 = cropX + cropW;
138 consumer.setPixels(x1 - cropX, y1 - cropY, (x2 - x1), (y2 - y1),
159 if (x1 < cropX) {
160 x1 = cropX;
[all...]

Completed in 29 milliseconds