I try 1000 times, to convert a simple stream (http webresponse) to bitmapimage, but no one tutorial is working in c# windows 8.

Example:

BitmapImage image = new BitmapImage();
image.SetSource(stream);
image1.Source = image; 

Thank's for all reply.

Solution

InMemoryRandomAccessStream randomAccessStream = new InMemoryRandomAccessStream();
DataWriter writer = new DataWriter(randomAccessStream.GetOutputStreamAt(0));
writer.WriteBytes((byte[])command);
await writer.StoreAsync();
BitmapImage image = new BitmapImage();
image.SetSource(randomAccessStream);
link|improve this question

Are you certain the stream is coming back with just raw image data? – ranksrejoined Dec 30 '11 at 9:39
Yes,but the problem is i don't know the correct methods wich i can do this. – flatronka Dec 30 '11 at 9:47
Excellent! I am glad you found the additional line that was needed to make it work! – Mike Nakis Dec 30 '11 at 11:50
feedback

1 Answer

up vote 2 down vote accepted

Have you tried this?

InMemoryRandomAccessStream randomAccessStream = new InMemoryRandomAccessStream();
DataWriter writer = new DataWriter(randomAccessStream.GetOutputStreamAt(0));
writer.WriteBytes(response.Content.ReadAsByteArray());
BitmapImage image = new BitmapImage();
image.SetSource(randomAccessStream);
link|improve this answer
Where you modify randomAccessStream, just initialize? – flatronka Dec 30 '11 at 10:02
the randomacces stream remain 0 – flatronka Dec 30 '11 at 10:09
randomAccessStream {Windows.Storage.Streams.InMemoryRandomAccessStream} Windows.Storage.Streams.InMemoryRandomAccessStream Size 0 ulong writer {Windows.Storage.Streams.DataWriter} Windows.Storage.Streams.DataWriter ByteOrder BigEndian Windows.Storage.Streams.ByteOrder UnicodeEncoding Utf8 Windows.Storage.Streams.UnicodeEncoding UnstoredBufferLength 10134 uint (byte[])e.responseObject {byte[10134]} byte[] – flatronka Dec 30 '11 at 10:13
1  
I see. I suppose the entire response must be received before you can execute this code. I am not sure how to wait until the entire response has been received. Ideas, anyone? – Mike Nakis Dec 30 '11 at 10:13
image {Windows.UI.Xaml.Media.Imaging.BitmapImage} Windows.UI.Xaml.Media.Imaging.BitmapImage base {Windows.UI.Xaml.Media.Imaging.BitmapImage} Windows.UI.Xaml.Media.Imaging.BitmapSource {Windows.UI.Xaml.Media.Imaging.BitmapImage} CreateOptions DelayCreation Windows.UI.Xaml.Media.Imaging.BitmapCreateOptions DecodePixelHeight 0 int DecodePixelWidth 0 int UriSource null Sys – flatronka Dec 30 '11 at 10:16
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.