C# Class Pinta.ImageManipulation.Effects.SharpenEffect

Inheritance: LocalHistogramEffect
ファイルを表示 Open project: PintaProject/Pinta.ImageManipulation Class Usage Examples

Public Methods

Method Description
Apply ( ColorBgra src, int area, int hb, int hg, int hr, int ha ) : ColorBgra
SharpenEffect ( int amount = 2 ) : System

Creates a new effect that will sharpen an image.

Protected Methods

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

Method Details

Apply() public method

public Apply ( ColorBgra src, int area, int hb, int hg, int hr, int ha ) : ColorBgra
src ColorBgra
area int
hb int
hg int
hr int
ha int
return ColorBgra

RenderLine() protected method

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

SharpenEffect() public method

Creates a new effect that will sharpen an image.
public SharpenEffect ( int amount = 2 ) : System
amount int Amount of sharpness to apply. Valid range is 1 - 20.
return System