I face an issue. I am trying to convert the Bitmap image into a memoryStream and store it. When converting the memoryStream back to image the background is becoming black
ms = new MemoryStream();
frm.pictureBox1.Image = Image.FromStream(ms);
as suggested above i tried Graphics.Clear()
method to set the background Transparent. But no success. Still the background is black. Anyone please suggest a solution for this.