/*
* Copyright (c) 1995, 2004, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.awt.image;
import java.awt.image.ImageConsumer;
import java.awt.image.ColorModel;
import java.util.Hashtable;
import java.awt.Rectangle;
/**
* An ImageFilter class for cropping images.
* This class extends the basic ImageFilter Class to extract a given
* rectangular region of an existing Image and provide a source for a
* new image containing just the extracted region. It is meant to
* be used in conjunction with a FilteredImageSource object to produce
* cropped versions of existing images.
*
* @see FilteredImageSource
* @see ImageFilter
*
* @author Jim Graham
*/
public class CropImageFilter extends ImageFilter {
int cropX;
int cropY;
int cropW;
int cropH;
/**
* Constructs a CropImageFilter that extracts the absolute rectangular
* region of pixels from its source Image as specified by the x, y,
* w, and h parameters.
* @param x the x location of the top of the rectangle to be extracted
* @param y the y location of the top of the rectangle to be extracted
* @param w the width of the rectangle to be extracted
* @param h the height of the rectangle to be extracted
*/
public CropImageFilter(int x, int y, int w, int h) {
cropX = x;
cropY = y;
cropW = w;
cropH = h;
}
/**
* Passes along the properties from the source object after adding a
* property indicating the cropped region.
* This method invokes super.setProperties,
* which might result in additional properties being added.
*
* Note: This method is intended to be called by the
* ImageProducer of the Image whose pixels
* are being filtered. Developers using
* this class to filter pixels from an image should avoid calling
* this method directly since that operation could interfere
* with the filtering operation.
*/
public void setProperties(Hashtable,?> props) {
Hashtable