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

ZoomBlurEffect() public method

Creates a new effect that will apply a zoom blur.
public ZoomBlurEffect ( int amount = 10, System.Point offset = newPoint() ) : System
amount int Amount of zoom to apply. Valid values are 0 - 200.
offset System.Point Origin point of the zoom blur.
return System
		public ZoomBlurEffect (int amount = 10, Point offset = new Point ())
		{
			if (amount < 0 || amount > 200)
				throw new ArgumentOutOfRangeException ("amount");

			this.amount = amount;
			this.offset = offset;
		}