如何仅在C#中的位图上保存PictureBox的绘画功能图?

时间:2019-04-30 09:01:45

标签: c# .net gdi+

  1. 我正在使用它的Paint事件在PictureBox控件上绘制形状。
  2. 我可以知道如何仅在没有图片框图像(当前)的位图上保存绘制的形状。
  3. 我不想保存PictureBox图像。
  4. 我已经从图像(白色背景图像)创建了位图,以在其上保存图形。
  5. 我想将其保存在创建的位图图像(4)上。
Image WhiteBackGroundImage=Image.FromFile("path");//fetching white back ground image.
Bitmap pic=new Bitmap(WhiteBackGroundImage);//creating bitmap
pictureBoxImage.DrawToBitmap(pic,pictureBoxImage.ClientRectangle);
pic.Save("path", ImageFormat.Png);

0 个答案:

没有答案