CSharp examples for System.Drawing:Image Effect
Byte To Image
using System.IO;/*from www. j a v a 2s . c o m*/ using System.Drawing; public class Main{ internal static Image ByteToImage(byte[] bytes) { try { var ms = new MemoryStream(bytes); return Image.FromStream(ms, true); } catch { return null; } } }