gpt4 book ai didi

c# - 自动调整图片框中的图像

转载 作者:太空宇宙 更新时间:2023-11-03 17:32:50 25 4
gpt4 key购买 nike

我正在做一个图像查看器。我已经在图片框中导入了图片。

应该使用哪个代码来自动调整图片框中图像的大小?这是我在查看图片框中的图像中的代码。

  private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Multiselect = true;
openFileDialog.Filter = "JPEG|*.jpg|Bitmaps|*.bmp";

if (openFileDialog.ShowDialog() == DialogResult.OK)
{
pFileNames = openFileDialog.FileNames;
pCurrentImage = 0;
ImageView();
}
}

protected void ImageView()
{
if (pCurrentImage >= 0 && pCurrentImage <= pFileNames.Length - 1)
{
pictureBox1.Image = Bitmap.FromFile(pFileNames[pCurrentImage]);
}
}

最佳答案

看一下 PictureBoxSizeMode 属性:http://msdn.microsoft.com/en-us/library/system.windows.forms.picturebox.sizemode.aspx

将其设置为 AutoSize,您就可以开始了。

Check here what you can set it to

关于c# - 自动调整图片框中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13394850/

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