C# Class ExtensionMethods.Effects

Mostra file Open project: vrish88/imageeditor

Public Methods

Method Description
ToBlackAndWhite ( this bitmap ) : Bitmap
ToInvert ( this bitmap ) : Bitmap
ToJitter ( this bitmap ) : Bitmap
ToPixalation ( this bitmap ) : Bitmap
ToSepia ( this bitmap ) : Bitmap
gaussianBlur ( this bitmap, int blur ) : Bitmap
resize ( this bitmap, int width, int height ) : Bitmap
rotate ( this bitmap, int degrees ) : Bitmap

Method Details

ToBlackAndWhite() public static method

public static ToBlackAndWhite ( this bitmap ) : Bitmap
bitmap this
return System.Drawing.Bitmap

ToInvert() public static method

public static ToInvert ( this bitmap ) : Bitmap
bitmap this
return System.Drawing.Bitmap

ToJitter() public static method

public static ToJitter ( this bitmap ) : Bitmap
bitmap this
return System.Drawing.Bitmap

ToPixalation() public static method

public static ToPixalation ( this bitmap ) : Bitmap
bitmap this
return System.Drawing.Bitmap

ToSepia() public static method

public static ToSepia ( this bitmap ) : Bitmap
bitmap this
return System.Drawing.Bitmap

gaussianBlur() public static method

public static gaussianBlur ( this bitmap, int blur ) : Bitmap
bitmap this
blur int
return System.Drawing.Bitmap

resize() public static method

public static resize ( this bitmap, int width, int height ) : Bitmap
bitmap this
width int
height int
return System.Drawing.Bitmap

rotate() public static method

public static rotate ( this bitmap, int degrees ) : Bitmap
bitmap this
degrees int
return System.Drawing.Bitmap