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.