using System.Drawing; private Byte[] Get_IMAGE(Image ImageR) { Byte[] ImageB = null; if (ImageR != null) try { using (System.IO.MemoryStream ms = new System.IO.MemoryStream()) { ImageR.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg); ImageB = ms.ToArray(); } } catch (Exception) { throw; } return ImageB; }
10 febrero 2013
C# - Algoritmos - Convertir Imagen a Bytes (2005, 2008)
Suscribirse a:
Enviar comentarios (Atom)
No hay comentarios:
Publicar un comentario