Come salvare un file immagine con una altra estensione in VB net : How to save an image file with another extension in VB net

Per salvare una immagine con una altra estensione, la cosa รจ facile, se si passa da una picturebox, per poi salvare la stessa in un altra estensione.To save an image with another extension, it is easy, if you switch from a picturebox, and then save the same in another extension.

Try

If Estensione = ".jpg" Or Estensione = ".jpeg" Then

PictureBoxVisio.Image.Save(NomenuovoDir, System.Drawing.Imaging.ImageFormat.Jpeg)
End If

If Estensione = ".bmp" Then

PictureBoxVisio.Image.Save(NomenuovoDir, System.Drawing.Imaging.ImageFormat.Bmp)
End If

If Estensione = ".gif" Then
PictureBoxVisio.Image.Save(NomenuovoDir, System.Drawing.Imaging.ImageFormat.Gif)
End If

If Estensione = ".png" Then
PictureBoxVisio.Image.Save(NomenuovoDir, System.Drawing.Imaging.ImageFormat.Png)
End If

Catch ex As Exception
'errore
MsgBox("An error occur during save file. [5] " & ex.Message)
End Try