Willem
Willem

Reputation: 9496

How to convert 'System.Windows.Media.Imaging.BitmapImage' to 'System.Drawing.Image'?

I would like to convert my BitmapImage to a System.Drawing.Image?

This is my BitmapImage:

BitmapImage bmi = new BitmapImage(new Uri(someString, UriKind.Absolute));

Now, how would i create a System.Drawing.Image from my bmi?

Upvotes: 5

Views: 8466

Answers (1)

Yahia
Yahia

Reputation: 70369

MSDN has a very good sample for interop between BitmapImage and System.Drawing.Image - see http://blogs.msdn.com/b/rwlodarc/archive/2007/01/03/wpf-bitmapsource-and-gdi-bitmap-interop.aspx

Upvotes: 2

Related Questions