User-263151482 posted
You have to pass the path someway, the image class figures out the format and you can save it like this:
FileStream fs = File.Create("theFile.jpg");
Image.Save(fs, ImageFormat.Jpeg);
That saves the image to a file called theFile in Jpeg format.