I have application for wp7. I am necessary get BitmapImage from Byte array. I do it so:
using (MemoryStream stream = new MemoryStream(rawImageBytes))
{
BitmapImage imageSource1 = new BitmapImage();
imageSource1.CreateOptions = BitmapCreateOptions.None;
imageSource1.SetSource(stream);
}
After running, in string imageSource1.SetSource(stream); I have error