Converter byte Array ou armazenamento de arquivos para imagem de bitmap

Depois que eu escolho arquivo para arquivo de armazenamento, como posso converter este arquivo para ser ש n imagem, a fim de exibi-lo como a foto do perfil?
Eu converti o arquivo para array de bytes, mas não sei o que fazer a seguir ou existe outra maneira?

Aqui está o meu código:

var openPicker = new Windows.Storage.Pickers.FileOpenPicker();
openPicker.ViewMode = Windows.Storage.Pickers.PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = Windows.Storage.Pickers.PickerLocationId.DocumentsLibrary;
openPicker.FileTypeFilter.Add(".png");
openPicker.FileTypeFilter.Add(".Jpeg");
openPicker.FileTypeFilter.Add(".Jpg");
StorageFile file = await openPicker.PickSingleFileAsync();

var stream = await file.OpenReadAsync();

using (var dataReader = new DataReader(stream))
  {
      var  bytes = new byte[stream.Size];
      await dataReader.LoadAsync((uint)stream.Size);
      dataReader.ReadBytes(bytes);
      var stream2 = new MemoryStream(bytes);
  }

questionAnswers(1)

yourAnswerToTheQuestion