Click here to Skip to main content
15,912,283 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi


I have done the coding of the webcam capturing but now i want to take snapshot of the capturing screen.
Posted
Comments
Xeshan Ahmed 21-Oct-11 2:51am    
what exactly you want.........do you want to take snapshot of your executing webcam application ??
Xeshan Ahmed 21-Oct-11 2:51am    
share you code with us for more clarifications

Look at this article on CodeProject : Versatile WebCam C# library[^]
 
Share this answer
 
I have done this by doing followong method:

private void btnSnap_Click(object sender, EventArgs e)
        {

            pictureBox1.Image = pictureBox2.Image;
            if (FinalVideo.IsRunning)
            {
                FinalVideo.Stop();  
            }
        }


//where pictureBox1 is for webcam
//and
// pictureBox2 is for the snaping the the picture from pictureBox1.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900