Pinta.ImageManipulation.Effects.FrostedGlassEffect.FrostedGlassEffect C# (CSharp) Method

FrostedGlassEffect() public method

Creates a new effect that applies a frosted glass look to an image.
public FrostedGlassEffect ( int amount = 1 ) : System
amount int Amount of effect to apply. Valid range is 1 - 10.
return System
		public FrostedGlassEffect (int amount = 1)
		{
			if (amount < 1 || amount > 10)
				throw new ArgumentOutOfRangeException ("amount");

			this.amount = amount;
		}