cv431410
User
 Senior Boarder
| Posts: 10 |   |
|
Question About JukeBox Asmple 2 - 2008/01/31 18:12
Truely enjoyed the three JukeBox samples, Thank you.
Question, as a video plays, I try to get an image out of the playing video. There are numerous discussions on how to get image out of a panel, it all comes to somthing like this:
Bitmap bmp = new Bitmap(panel1.Width, panel1.Height); Rectangle rect = new Rectangle(0, 0, panel1.Width, panel1.Height); panel1.DrawToBitmap(bmp, rect); bmp.Save("test.jpg");
The problem is I get an error saying panel1 does not have a function DrawToBitmap, Can you tell me how to solve this problem?
|