winform picturebox1 图像拷贝到picturebox2
时间: 2023-05-17 08:04:27 浏览: 134
Winform中图片操作picturebox
4星 · 用户满意度95%
可以使用以下代码将 PictureBox1 中的图像复制到 PictureBox2 中:
```
private void CopyImage()
{
// 获取 PictureBox1 中的图像
Image img = pictureBox1.Image;
// 创建一个新的 Bitmap 对象,将 PictureBox1 中的图像复制到其中
Bitmap bmp = new Bitmap(img);
// 将 Bitmap 对象显示在 PictureBox2 中
pictureBox2.Image = bmp;
}
```
在这个代码中,我们首先获取了 PictureBox1 中的图像,然后创建了一个新的 Bitmap 对象,并将 PictureBox1 中的图像复制到其中。最后,我们将 Bitmap 对象显示在 PictureBox2 中。
阅读全文