![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
| |
| | #1 (permalink) |
| | Convert BitmapImage to Bitmap? How I can convert from System.Windows.Media.Imaging.BitmapImage(Avalon bitmap) to System.Drawing.Bitmap (.net Bitmap)? |
My System Specs![]() |
| | #2 (permalink) |
| | re: Convert BitmapImage to Bitmap? Just curious, why are you trying to do that? Perhaps there are WPF classes that can do what you're looking for? In any case, WPF doe not have a way to natively convert BitmapSources to Bitmaps. You need to manually do this by calling CopyPixels, and creating a Bitmap with the image bits. -----Original Message----- From: Rhinpoche@star-sw.com Posted At: Wednesday, May 17, 2006 6:43 AM Posted To: microsoft.public.windows.developer.winfx.avalon Conversation: Convert BitmapImage to Bitmap? Subject: Convert BitmapImage to Bitmap? How I can convert from System.Windows.Media.Imaging.BitmapImage(Avalon bitmap) to System.Drawing.Bitmap (.net Bitmap)? |
My System Specs![]() |
| | #3 (permalink) |
| | Re: Convert BitmapImage to Bitmap? several reasons ![]() 1.relatively large library of very specific image transformations, implemented on Bitmap 2.Hard deadline 3.cherish hopes for some backward compatibilty ) |
My System Specs![]() |
| | #4 (permalink) |
| 32bit | Re: Convert BitmapImage to Bitmap? ImageSource to Bitmap MemoryStream mse = newMemoryStream(); System.Windows.Media.Imaging.BmpBitmapEncoder e = newBmpBitmapEncoder(); e.Frames.Add(BitmapFrame.Create(imageSource_bitmapSource)); e.Save(mse); WIC Rocks! |
My System Specs![]() |