I want to create a WritableBitmap and display a bitmap from stream onto a Image object. How to do that in Silverlight. I am doing the following which is not working.

  Image img = new Image();

  System.IO.Stream stream =  File.OpenRead("1.bmp"); //Getting access permission error

  WriteableBitmap bmp1 = new WriteableBitmap(100, 100);
  bmp1.SetSource(stream);
  //do operations with bmp1 

  img.Source = bmp1;
link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

In Silverlight, file I/O is pretty constrained.

Check this post

In Browser Silverlight Application - Client Side File/Directory access

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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