C# Class ImageProcessor.Web.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: IWebGraphicsProcessor
Mostra file Open project: JimBobSquarePants/ImageProcessor

Public Methods

Method Description
Mask ( ) : System

Initializes a new instance of the Mask class.

MatchRegexIndex ( string queryString ) : int

The position in the original string where the first character of the captured substring was found.

ParseImage ( string input ) : Image

Returns an image from the given input path.

Method Details

Mask() public method

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

MatchRegexIndex() public method

The position in the original string where the first character of the captured substring was found.
public MatchRegexIndex ( string queryString ) : int
queryString string The query string to search.
return int

ParseImage() public method

Returns an image from the given input path.
public ParseImage ( string input ) : Image
input string /// The input containing the value to parse. ///
return Image