Axiom.Media.Image.Resize C# (CSharp) Method

Resize() public method

Resize a 2D image, applying the appropriate filter.
public Resize ( int width, int height ) : void
width int
height int
return void
		public void Resize( int width, int height )
		{
			Resize( width, height, ImageFilter.Bilinear );
		}

Same methods

Image::Resize ( int width, int height, ImageFilter filter ) : void