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
Afficher le fichier Open project: JimBobSquarePants/ImageProcessor

Méthodes publiques

Méthode 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 méthode

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.
Résultat int

Overlay() public méthode

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

ParseImage() public méthode

Returns an image from the given input path.
public ParseImage ( string input ) : Image
input string /// The input containing the value to parse. ///
Résultat System.Drawing.Image