Bitmap extends Image, therefore you can call: Image.Save (String, ImageFormat). For example:
using System.Drawing
// ...
Bitmap img = new Bitmap("file.jpg");
img.Save("file.png", ImageFormat.Png); // ImageFormat.Jpeg, etc
Omitting the second argument and just calling Image.Save(String) will save the image as its raw format.