Hello Everyone I am new to wp7.
My issue is I'm saving bitmap image but the background of the image is not Transparent. See my code below:
IsolatedStorageFileStream fileStream = myIsolatedStorage.CreateFile(fileName);
var bitmap = new WriteableBitmap(500, 700);
bitmap.Render(paint, null);
bitmap.Invalidate();
WriteableBitmap wb = new WriteableBitmap(bitmap);
wb.SaveJpeg(fileStream, wb.PixelWidth, wb.PixelHeight, 0, 85);
fileStream.Close();
How can I save a bitmap image with a transparent background ?