1

我想在 ASP.NET C# 中单击一个按钮将一个图像调整为多个图像,例如 thumb_image、Small_image、big_image。

请为我提供相同的帮助或示例代码..

4

2 回答 2

1

你可以做这样的事情。

 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;
    }
于 2013-02-22T06:54:02.893 回答
0

我希望你使用图书馆来做到这一点。有很多代码示例,但它们不是为服务器端使用而设计的,而ImageResizer .

至少阅读这篇文章,了解如果您决定采用复制和粘贴路线,应避免哪些陷阱

于 2013-05-30T15:03:19.147 回答