using System.IO;
using System.Drawing.Imaging;
public class imgConvert
{
private void BMPToJPG(string bmpFileName,string jpgFileName)
{
System.Drawing.Image img;
img=ReturnPhoto(bmpFileName);
img.Save(jpgFileName,ImageFormat.Jpeg);
}
private Image ReturnPhoto(string bmpFileName)
{
System.IO.FileStream stream ;
stream=File.OpenRead(bmpFileName);
Bitmap bmp = new Bitmap(stream);
System.Drawing.Image image = bmp;//得到原圖
//創建指定大小的圖