I have a byte[] that is represented by an Image. I am downloading this Image via a WebClient. When the WebClient
byte[]
Image
WebClient
You can use a BitmapImage, and sets its StreamSource to a stream containing the binary data. If you want to make a stream from a byte[], use a MemoryStream:
stream
MemoryStream stream = new MemoryStream(bytes);