Hello everyone. I am new to wp7.
My problem is that I save the bitmap, 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 to save a bitmap with a transparent background?
source share