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

Voglio caricare l'immagine dal database in una finestra immagine usando LoadAsync e MemoryStream

Non caricare i byte nell'immagine, ciò vanificherà lo scopo di ciò che stai cercando di ottenere ... (nota che questo è un modo rapido e sporco per ottenere l'immagine in un file temporaneo ... c'è un molte altre considerazioni qui, non ultima quella di eliminare il file temporaneo quando hai finito)

byte[] byteBLOBData = (byte[])ds.Tables["magazine_images"].Rows[c - 1]["image"];
string tempImageFileName = Path.Combine(Path.GetTempPath(), Path.GetTempFileName() + ".jpg");
using( FileStream fileStream = new FileStream(tempImageFileName, FileMode.OpenOrCreate, FileAccess.ReadWrite) ) {
    using( BinaryWriter writer = new BinaryWriter(fileStream) ) {
        writer.Write(byteBLOBData);
    }
}

pictureBox1.LoadCompleted += LoadCompleted;
pictureBox1.WaitOnLoad = false;
pictureBox1.LoadAsync(tempImageFileName);

...

private static void LoadCompleted( object sender, AsyncCompletedEventArgs e ) {
    if( e.Error != null ) {
        // will get this if there's an error loading the file
    } if( e.Cancelled ) {
        // would get this if you have code that calls pictureBox1.CancelAsync()
    } else {
        // picture was loaded successfully
    }
}

vedi anche LoadProgressChanged evento