gpt4 book ai didi

c# - 如何在 C# 中调整图像的大小以保持纵横比

转载 作者:行者123 更新时间:2023-11-30 13:37:03 24 4
gpt4 key购买 nike

我需要知道一种方法来调整图像大小以适应盒子,而图像不会过度拉伸(stretch)。该框已设置宽度和高度,我希望图像尽可能多地填充框,但要保持它原来的纵横比。

最佳答案

//calculate the ratio
double dbl = (double)image.Width / (double)image.Height;

//set height of image to boxHeight and check if resulting width is less than boxWidth,
//else set width of image to boxWidth and calculate new height
if( (int)((double)boxHeight * dbl) <= boxWidth )
{
resizedImage = new Bitmap(original, (int)((double)boxHeight * dbl), boxHeight);
}
else
{
resizedImage = new Bitmap(original, boxWidth, (int)((double)boxWidth / dbl) );
}

同比例缩放的公式为:

newWidth =  (int)((double)boxHeight * dbl)

or

newHeight = (int)((double)boxWidth / dbl)

关于c# - 如何在 C# 中调整图像的大小以保持纵横比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26486671/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com