Blog sul mondo C# e non solo [ITA]
Codice per convertire un array di byte in bitmapimage.
public static BitmapImage ImageFromBuffer(byte[] bytes) { var stream = new MemoryStream(bytes); { var image = new BitmapImage(); image.SetSource(stream); return image; } }
Nessun commento:
Posta un commento