积极答复者
在VS08中如何保存PictureBox的图像?

问题
答案
-
Code Snippet
Me.PictureBox1.ImageLocation = "http://dotnet.aspx.cc/Images/logoSite.gif"
保存:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
PictureBox1.Image.Save("c:\xxxxx.gif")
End Sub完全没有问题啊
全部回复
-
Code Snippet
Me.PictureBox1.ImageLocation = "http://dotnet.aspx.cc/Images/logoSite.gif"
保存:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
PictureBox1.Image.Save("c:\xxxxx.gif")
End Sub完全没有问题啊
-
你有Me.PictureBox1.ImageLocation = "http://dotnet.aspx.cc/Images/logoSite.gif"这句啊,我没有。
我直接用PictureBox的Paint事件的e参数来绘图