调整图像大小后,我的调整大小功能会返回新绘制的图像。我遇到了一个问题,我需要确定返回的Image
的文件扩展名应该是什么。我之前使用的是Image.RawFormat
属性,但每次从此函数返回一个Image时,它都有ImageFormat.MemoryBMP
,而不是ImageFormat.Jpeg
或ImageFormat.Gif
。
基本上我的问题是,如何确定新调整大小的Image
应该是哪种文件类型?
public static Image ResizeImage(Image imageToResize, int width, int height)
{
// Create a new empty image
Image resizedImage = new Bitmap(width, height);
// Create a new graphic from image
Graphics graphic = Graphics.FromImage(resizedImage);
// Set graphics modes
graphic.SmoothingMode = SmoothingMode.HighQuality;
graphic.InterpolationMode = InterpolationMode.HighQualityBicubic;
graphic.PixelOffsetMode = PixelOffsetMode.HighQuality;
// Copy each property from old iamge to new image
foreach (var prop in imageToResize.PropertyItems)
{
resizedImage.SetPropertyItem(prop);
}
// Draw the new Image at the resized size
graphic.DrawImage(imageToResize, new Rectangle(0, 0, width, height));
// Return the new image
return resizedImage;
}
答案 0 :(得分:7)
已调整大小的图像不是基于任何文件的格式,而是图像中像素的未压缩内存表示。
要将此图像保存回磁盘,需要以所选格式对数据进行编码,您必须指定该格式。查看Save方法,它将ImageFormat作为第二个参数,使Jpeg或任何最适合您应用程序的格式。