![]() |
The Java Developers Almanac 1.4 |
|
e664. Getting a Sub-Image of an Image // From an Image
image = createImage(new FilteredImageSource(image.getSource(), new CropImageFilter(x, y, w, h)));
// From a BufferedImage
bufferedImage = bufferedImage.getSubimage(x, y, w, h);
e661. Determining If an Image Has Transparent Pixels e662. Getting the Color Model of an Image e663. Getting the Transparent Pixel and Number of Colors Used in a GIF Image e665. Filtering the RGB Values in an Image
© 2002 Addison-Wesley. |