Hello,
I am saving an image from a label....not a picture box. The bitmap of the image looks fine but when I try to save it as a jpg or gif, the image quality goes down. Is this a problem with the orignal bitmap or it the way the jpg and gif are saved? The original bitmap is only 45K.
This is how they are saved:
If saveFile.FileName.EndsWith("bmp") Then
image.Save(saveFile.FileName, ImageFormat.Bmp)
ElseIf saveFile.FileName.EndsWith("gif") Then
image.Save(saveFile.FileName, ImageFormat.Gif)
ElseIf saveFile.FileName.EndsWith("jpg") Then
image.Save(saveFile.FileName, ImageFormat.Jpeg)
End If
This is the difference in quality:
Bitmap
![]()
Jpeg
![]()
Gif
![]()


Reply With Quote

