缩小图像尺寸会增加文件大小C#

时间:2016-11-23 10:48:31

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

我正在尝试调整图片大小,我当前的图片尺寸为(1800*1197)file size = 305kb,当我尝试将尺寸缩小为(1200*900)并将文件保存为size drastically increases to 1.75mb

我调用了以下方法resizeImage,如:

Image MainImage = resizeImage(BaseImage, 1200, 900, false);

我正在使用该功能调整图像大小,如下所示:

public static Bitmap resizeImage(Image imgToResize, int lnWidth, int lnHeight, bool _FixHeightWidth)
    {
        System.Drawing.Bitmap bmpOut = null;
        Graphics g;
        try
        {
            Bitmap loBMP = new Bitmap(imgToResize);
            ImageFormat loFormat = loBMP.RawFormat;

            decimal lnRatio;
            int lnNewWidth = 0;
            int lnNewHeight = 0;

            //*** If the image is smaller than a thumbnail just return it

            if (loBMP.Width < lnWidth && loBMP.Height < lnHeight && _FixHeightWidth == false)
            {
                bmpOut = new Bitmap(loBMP.Width, loBMP.Height);
                g = Graphics.FromImage(bmpOut);

                g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear;
                g.FillRectangle(Brushes.White, 0, 0, loBMP.Width, loBMP.Height);
                g.DrawImage(loBMP, 0, 0, loBMP.Width, loBMP.Height);
                loBMP.Dispose();
                return bmpOut;
            }

            if (loBMP.Width > loBMP.Height)
            {
                lnRatio = (decimal)lnWidth / loBMP.Width;
                lnNewWidth = lnWidth;
                decimal lnTemp = loBMP.Height * lnRatio;
                lnNewHeight = (int)lnTemp;
            }
            else
            {
                lnRatio = (decimal)lnHeight / loBMP.Height;
                lnNewHeight = lnHeight;
                decimal lnTemp = loBMP.Width * lnRatio;
                lnNewWidth = (int)lnTemp;
            }

            if (_FixHeightWidth == true)
            {
                lnNewHeight = lnHeight;
                lnNewWidth = lnWidth;
            }

            bmpOut = new Bitmap(lnNewWidth, lnNewHeight);
            g = Graphics.FromImage(bmpOut);
            g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear;
            g.FillRectangle(Brushes.White, 0, 0, lnNewWidth, lnNewHeight);
            g.DrawImage(loBMP, 0, 0, lnNewWidth, lnNewHeight);
            loBMP.Dispose();
        }
        catch
        {
            return null;
        }
        return bmpOut;
    }

转换成功后,我只需保存文件,但不会减少,而是增加文件大小。所以我只是希望文件大小保持相同(305kb)或相应减少它。

注意:我只是想了解如何处理这种情况的建议,如果出现任何其他解决方案的话,也会有一些解释是什么导致了这个问题。

示例图片:enter image description here

更新:文件格式为'.jpg'

MainImage.Save(Path.Combine(pathForSaving, fileName));

1 个答案:

答案 0 :(得分:1)

我想你正在使用文件的原始ImageFormat来编写新图像...如果原始图像是位图,结果格式将是,只更改扩展名...你需要设置一个编码器。 此外,您可以尝试将IterpolationMode更改为中低质量,或者将文件格式更改为PNG格式更适合互联网使用...