在使用图片的过程中,我们有时候需要将图片缩放到特定的宽度和高度,但是又不希望图片被直接拉伸而变形,而是实现图片的等比例缩放。类似于Winform的PictureBox的SizeMode属性的Zoom,而不是StretchImage。
-
//等比例缩放图片
-
private Bitmap ZoomImage(Bitmap bitmap, int destHeight, int destWidth)
-
{
-
try
-
{
-
System.Drawing.Image sourImage = bitmap;
-
int width = 0, height = 0;
-
//按比例缩放
-