Mysql
 sql >> Database >  >> RDS >> Mysql

Visualizza un'immagine archiviata nel database MySql in formato BLOB usando c#

Stai usando Windows Form? E devi convertire l'array di byte in immagine per visualizzarlo in Picture Box.

public Image byteArrayToImage(byte[] byteArrayIn)
{
    MemoryStream ms = new MemoryStream(byteArrayIn);
    Image returnImage = Image.FromStream(ms);
    return returnImage;
}

E come hai convertito l'immagine in un array di byte. Spero che il problema non ci sia. Puoi usare:

  private byte[] ImageToByteArray(string ImageFile)
    {
        FileStream stream = new FileStream(
              ImageFile, FileMode.Open, FileAccess.Read);
        BinaryReader reader = new BinaryReader(stream);

        // Convert image to byte array.
        byte[] photo = reader.ReadBytes((int)stream.Length);

        return photo;
    }