-5

所以基本上我正在努力转换图像。就像图片框中的图像是 JPG 但我想将其保存为 PNG,有人知道这样做的基本语法吗?

4

2 回答 2

3

您可以使用以下内容:

class Program
{
    static void Main(string[] args)
  {
     // Load the image.
     System.Drawing.Image image1 = System.Drawing.Image.FromFile(@"C:\test.bmp");

     // Save the image in JPEG format.
     image1.Save(@"C:\test.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);

     // Save the image in GIF format.
     image1.Save(@"C:\test.gif", System.Drawing.Imaging.ImageFormat.Gif);

    // Save the image in PNG format.
    image1.Save(@"C:\test.png", System.Drawing.Imaging.ImageFormat.Png);        
   }
}
于 2013-11-03T17:44:09.730 回答
0

好吧,请查看http://msdn.microsoft.com/en-us/library/twss4wb0(v=vs.90).aspx 以及C# - Convert Jpg to Png with index contrast。希望这可以帮助!

于 2013-11-03T17:45:41.283 回答