我使用pictureBox来显示从服务器接收的图像,但我的问题是紧凑框架中的图片框只有三种尺寸模式
StretchImage,Normal,CenterImage
我得到的图片通常更大,所以我必须使用StrecthImage模式。但随后保持纵横比,使显示的图像变形。
他们无论如何都要摆脱这个问题?
答案 0 :(得分:3)
最后我找到了我的问题的答案-----
float actualHeight = myImg.Height;
float actualWidth = myImg.Width;
float imgRatio = actualWidth / actualHeight;
float maxRatio = (float)this.Width / this.Height;
if(imgRatio!=maxRatio)
{
if (imgRatio < maxRatio)
{
imgRatio = this.Height / actualHeight;
actualWidth = imgRatio * actualWidth;
actualHeight = this.Height;
}
else
{
imgRatio = this.Width / actualWidth;
actualHeight = imgRatio * actualHeight;
actualWidth = this.Width;
}
}
pictureBox.Size=new Size((int)actualWidth,(int)actualHeight);
pictureBox.Location = new Point((int)((this.Width - actualWidth) / 2), (int)((this.Height - actualHeight) / 2));
但在此之前将图片框大小模式保持为stretchImage