我可以使用哪个免费图像大小调整库来调整大小并可能提供图像?

时间:2011-12-02 13:38:24

标签: c# asp.net image image-resizing

我使用过Umbraco,那里有非常漂亮的ImageGen库,它允许动态调整图像大小'和兑现处理的图像。

在Umbraco之外是否有类似的东西?

(我以为我可以在没有Umbraco的情况下使用ImageGen,但看起来它不是免费的)

由于

3 个答案:

答案 0 :(得分:10)

我意识到这个问题很老了,但是因为我偶然发现它,我想我应该发布我的发现。

http://imageprocessor.org/似乎是一个相对较新的免费开源库,并且还有很多功能!

答案 1 :(得分:5)

我编写了ImageResizer HttpModule,它是免费的,开源的,并通过StackOverflow imageresizer tag自由支持。

它有39个插件,其中一些需要许可证,但所有内容的所有源代码都可以在http://imageresizing.net/download获得。

works with all .NET CMSes, including Umbraco

与ImageGen不同,它可以扩展到数百万张图像。

答案 2 :(得分:3)

.NET Framework包括对图像大小调整的支持。

以下是我的书Ultra-Fast ASP.NET中的一些示例代码:

using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using System.IO;

namespace Samples
{
    public class ImageResizer
    {
        private static ImageCodecInfo jpgEncoder;

        public static void ResizeImage(string inFile, string outFile, double maxDimension, long level)
        {
            //
            // Load via stream rather than Image.FromFile to release the file
            // handle immediately
            //
            using (Stream stream = new FileStream(inFile, FileMode.Open))
            {
                using (Image inImage = Image.FromStream(stream))
                {
                    double width;
                    double height;

                    if (inImage.Height < inImage.Width)
                    {
                        width = maxDimension;
                        height = (maxDimension / (double)inImage.Width) * inImage.Height;
                    }
                    else
                    {
                        height = maxDimension;
                        width = (maxDimension / (double)inImage.Height) * inImage.Width;
                    }
                    using (Bitmap bitmap = new Bitmap((int)width, (int)height))
                    {
                        using (Graphics graphics = Graphics.FromImage(bitmap))
                        {
                            graphics.SmoothingMode = SmoothingMode.HighQuality;
                            graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
                            graphics.DrawImage(inImage, 0, 0, bitmap.Width, bitmap.Height);
                            if (inImage.RawFormat.Guid == ImageFormat.Jpeg.Guid)
                            {
                                if (jpgEncoder == null)
                                {
                                    ImageCodecInfo[] ici = ImageCodecInfo.GetImageDecoders();
                                    foreach (ImageCodecInfo info in ici)
                                    {
                                        if (info.FormatID == ImageFormat.Jpeg.Guid)
                                        {
                                            jpgEncoder = info;
                                            break;
                                        }
                                    }
                                }
                                if (jpgEncoder != null)
                                {
                                    EncoderParameters ep = new EncoderParameters(1);
                                    ep.Param[0] = new EncoderParameter(Encoder.Quality, level);
                                    bitmap.Save(outFile, jpgEncoder, ep);
                                }
                                else
                                    bitmap.Save(outFile, inImage.RawFormat);
                            }
                            else
                            {
                                //
                                // Fill with white for transparent GIFs
                                //
                                graphics.FillRectangle(Brushes.White, 0, 0, bitmap.Width, bitmap.Height);
                                bitmap.Save(outFile, inImage.RawFormat);
                            }
                        }
                    }
                }
            }
        }

        public static void GetImageSize(string inFile, out int width, out int height)
        {
            using (Stream stream = new FileStream(inFile, FileMode.Open))
            {
                using (Image src_image = Image.FromStream(stream))
                {
                    width = src_image.Width;
                    height = src_image.Height;
                }
            }
        }
    }
}