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.
1.relatively large library of very specific image transformations,
implemented on Bitmap
2.Hard deadline
3.cherish hopes for some backward compatibilty :))
memorystream mse = new memorystream();
system.windows.media.imaging.bmpbitmapencoder e = new
bmpbitmapencoder();
e.frames.add(bitmapframe.create(imagesource_bitmapsource));
e.save(mse);
wic rocks!
--
matchpointn