绘图后保存图片从PictureBox
本文关键字:PictureBox 保存 绘图 | 更新日期: 2023-09-27 18:02:21
我有PictureBox
和Image
,我使用Paint
事件在它上面画一条线,但是当我保存图像时,我得到了没有画线的图像
private void PicBox_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawLine(pen, end, start);
e.Graphics.Flush();
e.Graphics.Save();
}
//and I save it like this
picBox.Image.Save("directory");
这里缺少什么?
你想要DrawToBitmap()方法:
private void button1_Click(object sender, EventArgs e)
{
Bitmap bmp = new Bitmap(picBox.ClientSize.Width, picBox.ClientSize.Height);
picBox.DrawToBitmap(bmp, picBox.ClientRectangle);
bmp.Save("...fileName Here...");
}