C#保存PictureBox或Bitmap图片为bmp|png|gif|jpg格式

start
Bitmap bmp = new Bitmap(pictureBox1.Width, pictureBox1.Height);
pictureBox1.DrawToBitmap(bmp, 
new Rectangle(00, pictureBox1.Width, pictureBox1.Height));
bmp.Save(
"C:\\123.png", System.Drawing.Imaging.ImageFormat.Png);
end
posted @ 2011-04-10 15:50  大气象  阅读(11402)  评论(2编辑  收藏  举报
http://www.tianqiweiqi.com