如何更改图像位图尺寸

如何更改图像位图尺寸

本文介绍了如何更改图像位图尺寸?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

位图img;  //  当前方法之外。 
private void Form1_Load( object sender ,EventArgs e)
{
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
img = new 位图(file.FullName);
if (img.Height > = pictureBox1.Height)
{
// 如何更改img维度?
// 我想设置加载图像的高度或宽度,使其正确放入我的图片框。
// 如果图像模式是垂直的,我的图片框必须有高度>宽度。 img的高度将改变图片盒的高度。

}
pictureBox1.Image = img;
}
解决方案



Bitmap img;//outside current method.
                   private void Form1_Load(object sender, EventArgs e)
                   {
                    pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
                    img = new Bitmap(file.FullName);
                    if (img.Height >= pictureBox1.Height )
                    {
                     //how do i change the img dimension?
                     //i want to Set the height or width of the loaded image, to fit it properly into my picturebox.
                     //if the image mode is vertical, my picturebox must have height> width. The height of the img will transform how high the picturebox high will be. 

                    }
                     pictureBox1.Image = img;
                   }
解决方案



这篇关于如何更改图像位图尺寸?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 22:11