我有一个图片框控件,通过使用鼠标按下和鼠标移动事件,我正在使用点绘制图像并将其存储在我的数据库中。在更新模式下,我正在检索字节并将图像绘制到图片框控件中,现在我在图像上添加了几行,但是我得到了新添加的行或旧图像,但我想要两者
//rect is my picture box
Bitmap bmp = new Bitmap(rect.Width, rect.Height);
// Create compatible graphics
Graphics gxComp = Graphics.FromImage(bmp);
//If i have a image
System.IO.MemoryStream memStream = new System.IO.MemoryStream(TmpSign);
Bitmap im = new Bitmap(memStream);
Tmp 是我的图像的字节数组
gxComp.DrawLines(pen, _currentStroke.ToArray());
_currentStroke 是点列表。