BitmapSource型のプロパティへxmlからデシリアライズたいときなどに BitmapSourceは抽象クラスなのでココではBitmapImageへ変換してます public BitmapSource ByteArrayToImage(byte[] bytes) { if (bytes == null) { return null; } using (var ms = new MemoryStream(bytes)) { var bi = new BitmapImage(); // MemoryStreamを書き込むために準備する bi.BeginInit(); bi.CacheOption = BitmapCacheOption.OnLoad; bi.CreateOptions = BitmapCreateOptions.None; // MemoryStreamを書き込む bi.