sono riuscito a risolvere..
Nel caso possa servire a qualcuno ho modificato in questo modo:
Grazie lo stessoCodice PHP:
if (c > 0)
{ //BLOB is read into Byte array, then used to construct MemoryStream,
//then passed to PictureBox.
Byte[] byteBLOBData = new Byte[0];
byteBLOBData = (Byte[])(ds.Tables["Articoli"].Rows[c - 1]["Immagine"]);
FileStream fs = new FileStream("immagine.jpg" , FileMode.Create, FileAccess.Write);
fs.Write(byteBLOBData, 0, byteBLOBData.Length);
fs.Close();
}
![]()