i wanna convert the image in the picture box to base64 String
.
private void btnCapture_Click(object sender, EventArgs e)
{
frmaccount.pbID.Image = (Bitmap)pbCapture.Image.Clone();//this is the image i wanna Convert to base64
device.Stop();
this.Dispose();
}
PS. the image is taken from my camera and i want to save it as base64 String
.