Axiom.Media.Image.Resize C# (CSharp) Метод

Resize() публичный Метод

Resize a 2D image, applying the appropriate filter.
public Resize ( int width, int height ) : void
width int
height int
Результат void
		public void Resize( int width, int height )
		{
			Resize( width, height, ImageFilter.Bilinear );
		}

Same methods

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