Saltar al contenido

guardar imagen como byte array ejemplo de código c #

Este team de expertos pasados muchos días de investigación y de juntar de información, hallamos la respuesta, deseamos que te sea de utilidad en tu plan.

Ejemplo 1: imagen de c # en byte array

publicbyte[]ImageToByteArray(System.Drawing.Image imageIn)using(var ms =newMemoryStream())
      imageIn.Save(ms,imageIn.RawFormat);return  ms.ToArray();

Ejemplo 2: imagen a byte array C#

usingSystem;usingSystem.Drawing;usingSystem.Windows.Forms;usingSystem.IO;namespaceWindowsFormsApplication1publicpartialclassForm1:FormpublicForm1()InitializeComponent();privatevoidbutton1_Click(object sender,EventArgs e)//image to byteArrayImage img = Image.FromFile("d:\bank-copy.png");byte[] bArr =imgToByteArray(img);//byte[] bArr = imgToByteConverter(img);//Again convert byteArray to image and displayed in a pictureboxImage img1 =byteArrayToImage(bArr);
            pictureBox1.Image = img1;//convert image to bytearraypublicbyte[]imgToByteArray(Image img)using(MemoryStream mStream =newMemoryStream())
                img.Save(mStream, img.RawFormat);return mStream.ToArray();//convert bytearray to imagepublicImagebyteArrayToImage(byte[] byteArrayIn)using(MemoryStream mStream =newMemoryStream(byteArrayIn))return Image.FromStream(mStream);//another easy way to convert image to bytearraypublicstaticbyte[]imgToByteConverter(Image inImg)ImageConverter imgCon =newImageConverter();return(byte[])imgCon.ConvertTo(inImg,typeof(byte[]));

Reseñas y puntuaciones del artículo

Si haces scroll puedes encontrar las ilustraciones de otros creadores, tú también puedes mostrar el tuyo si te apetece.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *