Skip to content

Instantly share code, notes, and snippets.

@nuitsjp
Created October 17, 2016 02:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Rescale BitmapSource
public static BitmapSource Resize(this BitmapSource source, int resolution)
{
var scale = resolution / source.DpiX;
// サイズ変更
var transformedBitmap = new TransformedBitmap();
transformedBitmap.BeginInit();
transformedBitmap.Source = source;
transformedBitmap.Transform = new ScaleTransform(scale, scale);
transformedBitmap.EndInit();
return transformedBitmap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment