I have A webcam Class and have it so the image in my picturebox displays the live webcam feed. When I click the "Capture" Button, I would like to save the current image being displayed on the picturebox. How would I do this?
Just use the save method of the image.
pictureBox1.Image.Save(filename, System.Drawing.Imaging.ImageFormat.Jpeg);