我想在 ASP.NET C# 中单击一个按钮将一个图像调整为多个图像,例如 thumb_image、Small_image、big_image。
请为我提供相同的帮助或示例代码..
我想在 ASP.NET C# 中单击一个按钮将一个图像调整为多个图像,例如 thumb_image、Small_image、big_image。
请为我提供相同的帮助或示例代码..
你可以做这样的事情。
var thumbNail = CreateThumbnail(100, 100, fullPath);
public static Image CreateThumbnail(int maxWidth, int maxHeight, string path)
{
var image = Image.FromFile(path);
var ratioX = (double)maxWidth / image.Width;
var ratioY = (double)maxHeight / image.Height;
var ratio = Math.Min(ratioX, ratioY);
var newWidth = (int)(image.Width * ratio);
var newHeight = (int)(image.Height * ratio);
var newImage = new Bitmap(newWidth, newHeight);
Graphics.FromImage(newImage).DrawImage(image, 0, 0, newWidth, newHeight);
image.Dispose();
return newImage;
}
我希望你使用图书馆来做到这一点。有很多代码示例,但它们不是为服务器端使用而设计的,而ImageResizer 是.