C# Class Imgix_Dotnet.Operations.Stylize.StylizeExtensions

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

Méthodes publiques

Méthode 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 méthode

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 ///
Résultat ImgixImage

HalfTone() public static méthode

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 ///
Résultat ImgixImage

Monochrome() public static méthode

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 ///
Résultat ImgixImage

Pixellate() public static méthode

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) ///
Résultat ImgixImage

SepiaTone() public static méthode

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) ///
Résultat ImgixImage