I am trying to save a image which is in a picture box. The problem is that the saved image has a black background when it should be white.
Dim file_name As String = "C:\test.bmp"
Dim bm As Bitmap = PictureBox1.Image
bm.Save(file_name, System.Drawing.Imaging.ImageFormat.Bmp)
Does anybody know why this is happening????
Dim file_name As String = "C:\test.bmp"
Dim bm As Bitmap = PictureBox1.Image
bm.Save(file_name, System.Drawing.Imaging.ImageFormat.Bmp)
Does anybody know why this is happening????