我有以下在网上找到的方法,它将图像调整为近似大小,同时保持纵横比。
public Image ResizeImage(Size size)
{
int sourceWidth = _Image.Width;
int sourceHeight = _Image.Height;
float nPercent = 0;
float nPercentW = 0;
float nPercentH = 0;
nPercentW = ((float)size.Width / (float)sourceWidth);
nPercentH = ((float)size.Height / (float)sourceHeight);
if (nPercentH > nPercentW)
nPercent = nPercentH;
else
nPercent = nPercentW;
int destWidth = (int)(sourceWidth * nPercent);
int destHeight = (int)(sourceHeight * nPercent);
Bitmap b = new Bitmap(destWidth, destHeight);
Graphics g = Graphics.FromImage((Image)b);
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.DrawImage(_Image, 0, 0, destWidth, destHeight);
g.Dispose();
return (Image)b;
}
我通常传入一个宽度为 100 像素、高度为 100 像素的尺寸 - 作为我的要求的一部分,我不能让任何单个维度(高度或宽度)低于 100 像素,所以如果纵横比不是正方形的另一个维度会更高。
我用这种方法发现有时其中一个尺寸会低于 100 像素 - 例如 96 像素或 99 像素。如何更改此方法以确保不会发生这种情况?