怎样用C#实现各种不同图片格式的相互转换?谢谢啦
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(fileName);
bmp.Save(newFileName, ImageFormat);
把图片读到Bitmap,然后保存为你想要的格式。可否?