C# Class ImageProcessor.Web.Processors.Overlay

Adds an image overlay to the current image. If the overlay is larger than the image it will be scaled to match the image.
Inheritance: IWebGraphicsProcessor
显示文件 Open project: JimBobSquarePants/ImageProcessor

Public Methods

Method Description
MatchRegexIndex ( string queryString ) : int

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

Overlay ( ) : System.Collections.Specialized

Initializes a new instance of the Overlay class.

ParseImage ( string input ) : Image

Returns an image from the given input path.

Method Details

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

Overlay() public method

Initializes a new instance of the Overlay class.
public Overlay ( ) : System.Collections.Specialized
return System.Collections.Specialized

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 System.Drawing.Image