C# Class ImageProcessor.Processors.Filter

Encapsulates methods with which to add filters to an image.
Inheritance: IGraphicsProcessor
Show file Open project: JimBobSquarePants/ImageProcessor Class Usage Examples

Public Methods

Method Description
Filter ( ) : System

Initializes a new instance of the Filter class.

ProcessImage ( ImageFactory factory ) : Image

Processes the image.

Method Details

Filter() public method

Initializes a new instance of the Filter class.
public Filter ( ) : System
return System

ProcessImage() public method

Processes the image.
public ProcessImage ( ImageFactory factory ) : Image
factory ImageFactory /// The current instance of the class containing /// the image to process. ///
return Image