FastResize() public static method

public static FastResize ( Image originalImage, int newWidth, int newHeight ) : Image
originalImage Image
newWidth int
newHeight int
return Image
 private void SetSize(Size size)
 {
     this.size   = size;
     this.bitmap = (Bitmap)ImageOperations.FastResize(this.originalImage, (int)size.Width, (int)size.Height);
 }