There are a couple of ways:
1) Use the
Image.Save[
^] method to save it to a file.
2) Convert your Image to a byte array, and do what you want with it:
MemoryStream ms = new MemoryStream();
imageIn.Save(ms,System.Drawing.Imaging.ImageFormat.Bmp);
return ms.ToArray();