All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Interface java.awt.image.ImagingLib

public interface ImagingLib
This interface is used to provide a hook to access platform-specific imaging code. If a class exists that implements this interface, the appropriate filter method will be calling from the RasterOp or BufferedImageOp class. If the implementing class cannot handle the op, raster format or image format, the method will return null; If there is an error when processing the data, the implementing class may either return null (in which case our java code will be executed) or may throw an exception.


Method Index

 o filter(BufferedImageOp, BufferedImage, BufferedImage)
 o filter(RasterOp, Raster, WritableRaster)

Methods

 o filter
public abstract WritableRaster filter(RasterOp op,
                                      Raster src,
                                      WritableRaster dst)
 o filter
public abstract BufferedImage filter(BufferedImageOp op,
                                     BufferedImage src,
                                     BufferedImage dst)

All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature