How to convert a stream to BitmapImage?

2

I am trying to convert MemoryStream to Image by using the following code.

  Stream stream = new MemoryStream(bytes);
  BitmapImage bitmapImage = new BitmapImage();
  await bitmapImage.SetSourceAsync(stream.AsRandomAccessStream());

but it throws an exception in the SetSourceAsync method and the exception is

System.Exception was unhandled by user code HResult=-2003292336 Message=The component cannot be found. (Exception from HRESULT: 0x88982F50) Source=mscorlib StackTrace: at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotificat ion(Task task) at System.Runtime.CompilerServices.TaskAwaiter.GetResult() at ImageEditor_UWP.MainPage.d__1.MoveNext() InnerException:

How can I convert a stream to an image?

c#
uwp
bitmapimage
asked on Stack Overflow Aug 29, 2017 by Santhiya • edited Aug 29, 2017 by Clemens

2 Answers

0

To image:

public async static System.Threading.Tasks.Task<BitmapImage> ImageFromBytes(byte[] bytes)
{
    var image = new BitmapImage();

    try
    {
        var stream = new Windows.Storage.Streams.InMemoryRandomAccessStream();
        await stream.WriteAsync(bytes.AsBuffer());
        stream.Seek(0);
        await image.SetSourceAsync(stream);
    }
    catch (Exception ex)
    {
        System.Diagnostics.Debug.WriteLine(ex.Message);
    }

    return image;
}
answered on Stack Overflow Aug 29, 2017 by (unknown user) • edited Aug 29, 2017 by Clemens
-2

try this

var img = Bitmap.FromStream(stream);
answered on Stack Overflow Aug 29, 2017 by Krish

User contributions licensed under CC BY-SA 3.0