C# Class Imgix_Dotnet.Operations.Stylize.StylizeExtensions

ImgixImage extension methods that sets stylize related parameters on the Url.
Exibir arquivo Open project: estei/Imgix-Dotnet

Public Methods

Method Description
Blur ( this image, int value ) : ImgixImage

Adds the blur parameter

HalfTone ( this image, int value ) : ImgixImage

Adds a half-toning effect to the image

Monochrome ( this image, string value ) : ImgixImage

Does a monochromatic hue change.

Pixellate ( this image, int value ) : ImgixImage

Adds a pixellation effect

SepiaTone ( this image, int value ) : ImgixImage

Adds a sepia toning effect to the image

Method Details

Blur() public static method

Adds the blur parameter
public static Blur ( this image, int value ) : ImgixImage
image this The image to transform
value int /// Values: 0-1000 /// Default: 0 ///
return ImgixImage

HalfTone() public static method

Adds a half-toning effect to the image
public static HalfTone ( this image, int value ) : ImgixImage
image this The image to transform
value int /// Values: 0-100 /// Default: 0 ///
return ImgixImage

Monochrome() public static method

Does a monochromatic hue change.
public static Monochrome ( this image, string value ) : ImgixImage
image this The image to transform
value string /// 3, 6 or 8 digit hex value ///
return ImgixImage

Pixellate() public static method

Adds a pixellation effect
public static Pixellate ( this image, int value ) : ImgixImage
image this The image to transform
value int /// Values: 0-100 /// Default: 0 (No change) ///
return ImgixImage

SepiaTone() public static method

Adds a sepia toning effect to the image
public static SepiaTone ( this image, int value ) : ImgixImage
image this The image to transform
value int /// Values: 0-100 /// Default: 0 (No change) ///
return ImgixImage