C# Class ImageProcessor.Processors.Mask

Applies a mask to the given image. If the mask is not the same size as the image it will be centered against the image.
Inheritance: IGraphicsProcessor
显示文件 Open project: JimBobSquarePants/ImageProcessor Class Usage Examples

Public Methods

Method Description
Mask ( ) : System

Initializes a new instance of the Mask class.

ProcessImage ( ImageFactory factory ) : Image

Processes the image.

Method Details

Mask() public method

Initializes a new instance of the Mask class.
public Mask ( ) : 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