Just like this:
Code:
' Capture Image as Bitmap
copyFrame = CType(srcBmp.Clone(), Bitmap)
' Add this:
Dim img As Image = Image.FromHbitmap(copyFrame.GetHbitmap)
img.Save("filename.jpeg", Drawing.Imaging.ImageFormat.Jpeg)