C# Class ImageProcessor.Imaging.Filters.Photo.MatrixFilterBase

The matrix filter base contains equality methods.
Inheritance: IMatrixFilter
Afficher le fichier Open project: JimBobSquarePants/ImageProcessor

Méthodes publiques

Méthode Description
Equals ( object obj ) : bool

Determines whether the specified IMatrixFilter, is equal to this instance.

GetHashCode ( ) : int

Returns the hash code for this instance.

TransformImage ( Image image, Image newImage ) : Bitmap

Processes the image.

Method Details

Equals() public méthode

Determines whether the specified IMatrixFilter, is equal to this instance.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
Résultat bool

GetHashCode() public méthode

Returns the hash code for this instance.
public GetHashCode ( ) : int
Résultat int

TransformImage() public abstract méthode

Processes the image.
public abstract TransformImage ( Image image, Image newImage ) : Bitmap
image System.Drawing.Image The current image to process
newImage System.Drawing.Image The new Image to return
Résultat System.Drawing.Bitmap