Skip to content

Instantly share code, notes, and snippets.

@mpfund
Created May 7, 2012 08:34
Show Gist options
  • Save mpfund/2626672 to your computer and use it in GitHub Desktop.
Save mpfund/2626672 to your computer and use it in GitHub Desktop.
Resize Image with Antialiasing
Bitmap bmp = new Bitmap(width, height);
Graphics graph = Graphics.FromImage(bmp);
graph.InterpolationMode = InterpolationMode.High;
graph.CompositingQuality = CompositingQuality.HighQuality;
graph.SmoothingMode = SmoothingMode.AntiAlias;
graph.DrawImage(image, new Rectangle(0, 0, width, height));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment