如何将pictureBox1 图片导出到本地C:\呢?
如何将pictureBox1 图片导出到本地C:\呢?
[解决办法]
image.save
[解决办法]
Bitmap a=new Bitmap(pictureBox.Image);
a.Save("C:\\1.jpg");
[解决办法]
pictureBox1.Image.Save("C:\\1.jpg",System.Drawing.Imaging.ImageFormat.Jpeg);
[解决办法]
pictureBox1.Image不能为null,目的地址必须存在