C# Class Pinta.ImageManipulation.Effects.GaussianBlurEffect

Inheritance: BaseEffect
Mostra file Open project: PintaProject/Pinta.ImageManipulation Class Usage Examples

Public Methods

Method Description
CreateGaussianBlurRow ( int amount ) : int[]
GaussianBlurEffect ( int radius = 2 ) : System

Creates a new effect that will apply a Gaussian blur to an image.

Protected Methods

Method Description
RenderLine ( ISurface src, ISurface dest, Rectangle rect ) : void

Method Details

CreateGaussianBlurRow() public static method

public static CreateGaussianBlurRow ( int amount ) : int[]
amount int
return int[]

GaussianBlurEffect() public method

Creates a new effect that will apply a Gaussian blur to an image.
public GaussianBlurEffect ( int radius = 2 ) : System
radius int Radius to use for blur (higher is blurrier). Valid range is 0 - 200.
return System

RenderLine() protected method

protected RenderLine ( ISurface src, ISurface dest, Rectangle rect ) : void
src ISurface
dest ISurface
rect Rectangle
return void