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);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.