C#实现图片文件格式转换
string FileName="C:\\myphoto.jpg";
string NewFileName="c:\\myphoto.gif";
System.Drawing.Image imgFile = System.Drawing.Image.FromFile(Filename);
imgFile.Save(NewFileName,System.Drawing.Imaging.ImageFormat.GIF);
string FileName="C:\\myphoto.jpg";
string NewFileName="c:\\myphoto.gif";
System.Drawing.Image imgFile = System.Drawing.Image.FromFile(Filename);
imgFile.Save(NewFileName,System.Drawing.Imaging.ImageFormat.GIF);