wp7 のアプリケーションがあります。Byte 配列から BitmapImage を取得する必要があります。私はそうします:
using (MemoryStream stream = new MemoryStream(rawImageBytes))
{
BitmapImage imageSource1 = new BitmapImage();
imageSource1.CreateOptions = BitmapCreateOptions.None;
imageSource1.SetSource(stream);
}
実行後、文字列でimageSource1.SetSource(stream); エラーがあります