yassine1981ma
User
 Fresh Boarder
| Posts: 1 |   |
|
Yet another capture sample in C# - 2008/08/31 04:04
Hi all,
I used the code of the tutoriel "Yet another capture sample in C#" to capture a vido from a webcam. The video owner of my capture is a picturebox. So far, the application run succefully.
But, when i try to draw some lines on the picturebox using the code below, i get no lines drawn on my picturebox.
Graphics g =this.Image_pb.CreateGraphics(); Pen p = new Pen("red", 1); g.DrawLine(p, point, pend);
Thanks for ur help
|