I have a button that saves the image of my camera, in the following way:
MemoryStream photo = new MemoryStream();
pictureBox1.Image.Save(photo , ImageFormat.Jpeg);
byte[] byte_photo = photo.GetBuffer();
After I save my byte array in the...
asked by
02.03.2017 / 04:44