是否有任何功能可以删除最后绘制的曲线?

时间:2012-09-03 15:53:56

标签: c# .net drawing

我在PictureBoxcontrol中的图像上绘制一个矩形。

对于绘图我使用此功能:

Rectangle rect = contourDetected.BoundingRectangle;

Bitmap bmpOriginalImage = new Bitmap(pbxOriginalImage.Image);
img.Draw(rect, new Bgr(Color.Aquamarine), 2);

pbxOriginalImage.Image = img.ToBitmap();

是否有任何功能可以删除最后绘制的曲线?

1 个答案:

答案 0 :(得分:4)

没有这样的功能。 Bitmap无法跟踪它在特定状态下的状态。它只是跟踪像素缓冲区。

您必须编写自己的工具来撤消绘图。请记住以前版本的位图,如果您需要返回,只需恢复以前的版本。