Is there a way to manipulate the individual pixels of the Bitmap behind a BitmapSource or do I have to convert the BitmapSource to System.Drawing.Bitmap? Latter exposes such methods as GetPixels and SetPixels I can use.

Also, if I have to convert from BitmapSource to Bitmap I tied the following methods to go back and forth but somewhere in between, my original images loses its transparency:

private BitmapSource GetBitmapSource(Bitmap _image)
        {
            Bitmap bitmap = _image;
            BitmapSource bitmapSource = Imaging.CreateBitmapSourceFromHBitmap(
                bitmap.GetHbitmap(),
                IntPtr.Zero,
                Int32Rect.Empty,
                BitmapSizeOptions.FromEmptyOptions());
            return bitmapSource;
        }

        private Bitmap BitmapFromSource(BitmapSource bitmapsource)
        {
            Bitmap bitmap; 
            using (MemoryStream outStream = new MemoryStream())
            {
                BitmapEncoder enc = new BmpBitmapEncoder();
                enc.Frames.Add(BitmapFrame.Create(bitmapsource)); 
                enc.Save(outStream); 
                bitmap = new System.Drawing.Bitmap(outStream);
            } 
            return bitmap;

TIA.

link|improve this question

64% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.