Java java.awt.image ConvolveOp fields, constructors, methods, implement or subclass

Example usage for Java java.awt.image ConvolveOp fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.awt.image ConvolveOp.

The text is from its open source code.

Field

intEDGE_ZERO_FILL
Pixels at the edge of the destination image are set to zero.
intEDGE_NO_OP
Pixels at the edge of the source image are copied to the corresponding pixels in the destination without modification.

Constructor

ConvolveOp(Kernel kernel)
Constructs a ConvolveOp given a Kernel.
ConvolveOp(Kernel kernel, int edgeCondition, RenderingHints hints)
Constructs a ConvolveOp given a Kernel, an edge condition, and a RenderingHints object (which may be null).

Method

BufferedImagefilter(BufferedImage src, BufferedImage dst)
Performs a convolution on BufferedImages.
WritableRasterfilter(Raster src, WritableRaster dst)
Performs a convolution on Rasters.