I\'m developing an application in C#, and I developed a library that does some stuff with Aforge cameras. One of the points is to simply capture images of what is i
Aforge
This works for me.
if (pictureBox1.Image != null) { pictureBox1.Image.Dispose(); } Bitmap bitmap = eventArgs.Frame.Clone() as Bitmap; pictureBox1.Image = bitmap;