Bitmap images = new Bitmap(width, height);
        
//创建Graphics类对象
 Graphics g = Graphics.FromImage(images);g上面画图 代码略......System.IO.MemoryStream ms = new System.IO.MemoryStream();
images.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
Response.ClearContent();
 Response.ContentType = "image/Jpeg";
 Response.BinaryWrite(ms.ToArray());为什么输出的格式是bmp 太大了?如何变换格式如:gif 等