如何将图片保存到Picturebox?

时间:2015-10-29 19:31:03

标签: c#

这是我目前的代码:

private void BrowsePicture_Click(object sender, EventArgs e) // Browse Picture
    {
        OpenFileDialog OFD = new OpenFileDialog();
        if(OFD.ShowDialog()==DialogResult.OK)
        {
            Bitmap Image = new Bitmap(OFD.FileName);
            ProfilePicture.Image = Image;
            ProfilePicture.SizeMode = PictureBoxSizeMode.Zoom;
        }
    }

我想将图像保存在PictureBox上,这样当软件关闭并稍后再次打开时,图像仍会在那里。这可以通过Properties.Settings完成吗?

1 个答案:

答案 0 :(得分:2)

你在哪里保存这些数据?您应该将设置保存在执行登录操作时可以阅读的位置,然后在PictureBox中设置值。

编辑:

要将图像保存在特定文件夹中:

Bitmap b = new Bitmap("your image location"); b.Save("your folder location + your image name with extension");

要阅读图片并设置为PictureBox,请在Load事件中执行此操作:

pictureBox1.Image = Image.FromFile("your image location");