Santhiya
Santhiya

Reputation: 301

How to convert a stream to BitmapImage?

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?

Upvotes: 3

Views: 4668

Answers (2)

user5158149
user5158149

Reputation:

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;
}

Upvotes: 0

Krish
Krish

Reputation: 386

try this

var img = Bitmap.FromStream(stream);

Upvotes: -1

Related Questions