I have:
WriteableBitmap bmp;
I basicly want to save it into a file on the disk like the following:
C:\bmp.png
I read some forums which mentions to read:
bmp.Pixels
and save those pixels into a Bitmap then use Bitmap.SaveImage() function. However, I can't access any Pixels. Apperantly my WriteableBitmap does not have any property named Pixels.
I use .NET Framework 4.0.