vb2010如何保存picturebox1当中的图像?

2024-11-06 13:55:56
推荐回答(1个)
回答1:

If PictureBox1.Image IsNot Nothing Then
PictureBox1.Image.Save(sfd.filename)
End If
'用上面的代码就可以了,你既然要保存picturebox1当中的图像,那么就要保证PictureBox1.Image IsNot Nothing