3

我有一个 ac# 应用程序,其中包含一个图片库,我在其中显示一些图片。这个画廊有一些功能,包括左右旋转。一切都很完美,但是当我从图库中选择一张图片并按下旋转按钮(无论向左或向右旋转)时,图片的大小会显着增加。需要说明的是,图片的格式是JPEG。

旋转前图片大小:278 kb

旋转后图片大小:780 kb

我的旋转代码如下:

 public Image apply(Image img)
    {  
        Image im = img;
        if (rotate == 1) im.RotateFlip(RotateFlipType.Rotate90FlipNone);
        if (rotate == 2) im.RotateFlip(RotateFlipType.Rotate180FlipNone);
        if (rotate == 3) im.RotateFlip(RotateFlipType.Rotate270FlipNone);

        //file size is increasing after RotateFlip method

        if (brigh != DEFAULT_BRIGH ||
            contr != DEFAULT_CONTR ||
            gamma != DEFAULT_GAMMA)
        {
            using (Graphics g = Graphics.FromImage(im))
            {
                float b = _brigh;
                float c = _contr;
                ImageAttributes derp = new ImageAttributes();
                derp.SetColorMatrix(new ColorMatrix(new float[][]{
                        new float[]{c, 0, 0, 0, 0},
                        new float[]{0, c, 0, 0, 0},
                        new float[]{0, 0, c, 0, 0},
                        new float[]{0, 0, 0, 1, 0},
                        new float[]{b, b, b, 0, 1}}));
                derp.SetGamma(_gamma);
                g.DrawImage(img, new Rectangle(Point.Empty, img.Size),
                    0, 0, img.Width, img.Height, GraphicsUnit.Pixel, derp);
            }
        }
        return im; 
    }

问题是什么?

4

3 回答 3

6

在您的情况下,应用RotateFlip正在im更改ImageFormatfromJpegMemoryBmp。默认情况下,当您保存图像时,它将使用默认值ImageFormat。这将是返回的格式im.RawFormat

如果您检查 GUIDim.RawFormat.Guid

旋转翻转之前

{b96b3cae-0728-11d3-9d7b-0000f81ef32e} 与ImageFormat.Jpeg.Guid

旋转翻转后

{b96b3caa-0728-11d3-9d7b-0000f81ef32e} 与ImageFormat.MemoryBmp.Guid

在保存图像时传递ImageFormat第二个参数,这将确保它使用正确的格式。如果没有提到,它将是其中的一个im.RawFormat

因此,如果您想在保存通话时另存为 jpeg

im.Save("filename.jpg", ImageFormat.Jpeg);

这次文件大小应该小于原始大小。

另请注意ImageFormatSystem.Drawing.Imaging命名空间中

笔记

要控制 jpeg 的质量,请使用此MSDN 链接中提到的重载 Save 方法


根据评论编辑

好的,假设您使用的是 SQL Server,您必须有一个image数据类型列(建议使用varbinary(max)而不是image将来它将被淘汰(阅读 MSDN 帖子

现在到步骤

1) read the contents as a stream / byte[] array

2) convert this to Image

3) perform rotate operation on the Image

4) convert this Image back to stream / byte[] array

5) Update the database column with the new value
于 2012-05-27T08:03:47.667 回答
1

两个原因:

  1. JPEG 压缩/编码/采样没有像原始 JPEG 那样优化。
  2. JPEG 不透明。当图像未旋转 90/180/270 度时,图像的矩形边界会变大。
于 2012-05-27T06:51:28.983 回答
0

您应该ImageFormat在更改图像之前保留原始图像,并以原始图像格式保存到文件。像下面的代码:

using (Image image = Image.FromFile(filePath))
{
    var rawFormat = image.RawFormat;
    image.RotateFlip(angel);
    image.Save(filePath, rawFormat);
}
于 2017-08-22T07:08:30.693 回答