图像Byte转Bitmap
public Bitmap ByteToBitmap(byte[] ImageByte) { Bitmap bitmap = null; try { using (MemoryStream ms = new MemoryStream(ImageByte)) { bitmap = new Bitmap((Image)new Bitmap(ms)); } } catch (Exception ex) { } return bitmap; }