Skip to content

Instantly share code, notes, and snippets.

@nuitsjp
Created October 17, 2016 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nuitsjp/2845b89e3d6f8d22a7c11e9cb041ab0b to your computer and use it in GitHub Desktop.
Save nuitsjp/2845b89e3d6f8d22a7c11e9cb041ab0b to your computer and use it in GitHub Desktop.
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