Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make my C# code add an image to my (WPF) application's canvas. However, my code does not work.

Image I = new Image();
I.Source = System.IO.File.Open(@"C:\Users\Public\Pictures\Sample Pictures\Penguins.jpg", System.IO.FileMode.Open);

I get the error:

Cannot implicitly convert type 'System.IO.FileStream' to 'System.Windows.Media.ImageSource'

I see why this is: The Image object wants the raw bitmap (or jpg or whatever), and my code is giving it an output stream from the file. How do I convert between the two?

share|improve this question

1 Answer

Approximately:

Image I = new Image();
BitmapImage bi = new BitmapImage();
bi.BeginInit();
bi.UriSource = new Uri(@"C:\Users\Public\Pictures\Sample Pictures\Penguins.jpg", UriKind.Absolute);
bi.EndInit();
I.Source = bi;
share|improve this answer
BitmapImage has a constructor overload that accepts a Uri. Would using that be any different than your example? – YotaXP May 28 '09 at 5:37
What do I need to import to make this work? At the moment Visual Studio compains, saying "'System.Windows.Controls.Image' does not contain a definition for 'FromStream'" – kenmcfa May 28 '09 at 13:22
1  
Sorry, I confounded System.Drawing.Image and System.Windows.Controls.Image when I made a revision to this post this morning. I rolled back to a correct solution. – Jason May 28 '09 at 16:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.