一种使用GDI+对图片尺寸和质量的压缩方法

今天同事向我询问图片压缩的算法,我想起大概两三年前做过的一个项目。其中包含了尺寸和质量两种压缩算法,并且支持JPEG、bmp、PNG等格式。今天把这段逻辑贴出来,供大家参考。(转载请指明来源于breaksoftware的CSDN博客)

  • 尺寸压缩
bool CompressImagePixel(
    const WCHAR* pszOriFilePath,
    const WCHAR* pszDestFilePah,
    UINT ulNewHeigth,
    UINT ulNewWidth )
{
    // Initialize GDI+.
    GdiplusStartupInput gdiplusStartupInput;
    ULONG_PTR gdiplusToken;
    Status stat = GenericError;
    stat = GdiplusStartup( &gdiplusToken, &gdiplusStartupInput, NULL );
    if ( Ok != stat ) {
        return false;
    }
    // 重置状态
    stat = GenericError;

    // Get an image from the disk.
    Image* pImage = new Image(pszOriFilePath);

    do {
        if ( NULL == pImage ) {
            break;
        }

        // 获取长宽
        UINT unOriHeight = pImage->GetHeight();
        UINT unOriWidth = pImage->GetWidth();

        do {
            CLSID encoderClsid;
            if ( unOriWidth < 1 || unOriHeight < 1 ) {
                break;
            }

            // Get the CLSID of the JPEG encoder.
            if ( !GetEncoderClsid(L"image/jpeg", &encoderClsid) ) {
                break;
            }

            REAL fSrcX = 0.0f;
            REAL fSrcY = 0.0f;
            REAL fSrcWidth = (REAL) unOriWidth;
            REAL fSrcHeight = (REAL) unOriHeight ;
            RectF RectDest( 0.0f, 0.0f, (REAL)ulNewWidth, (REAL)ulNewHeigth);

            Bitmap* pTempBitmap = new Bitmap( ulNewWidth, ulNewHeigth );
            Graphics* graphics = NULL;

            do {
                if ( !pTempBitmap ) {
                    break;
                }

                graphics = Graphics::FromImage( pTempBitmap );
                if ( !graphics ) {
                    break;
                }

                stat = graphics->SetInterpolationMode(Gdiplus::InterpolationModeHighQuality);
                if ( Ok != stat ) {
                    break;
                }

                stat = graphics->SetSmoothingMode(Gdiplus::SmoothingModeHighQuality);
                if ( Ok != stat ) {
                    break;
                }

                stat = graphics->DrawImage( pImage, RectDest, fSrcX, fSrcY, fSrcWidth, fSrcHeight,
                    UnitPixel, NULL, NULL, NULL);
                if ( Ok != stat ) {
                    break;
                }

                stat = pTempBitmap->Save( pszDestFilePah, &encoderClsid, NULL );
                if ( Ok != stat ) {
                    break;
                }

            } while(0);

            if ( NULL != graphics ) {
                delete graphics;
                graphics = NULL;
            }

            if ( NULL != pTempBitmap ) {
                delete pTempBitmap;
                pTempBitmap = NULL;
            }
        } while(0);
    } while (0);

    if ( pImage ) {
        delete pImage;
        pImage = NULL;
    }

    GdiplusShutdown(gdiplusToken);

    return ( ( Ok == stat ) ? true : false );
}
  • 质量压缩
bool CompressImageQuality(
    const WCHAR* pszOriFilePath,
    const WCHAR* pszDestFilePah,
    ULONG quality )
{
    // copy from http://msdn.microsoft.com/en-us/library/ms533844(v=VS.85).aspx
    // Initialize GDI+.
    GdiplusStartupInput gdiplusStartupInput;
    ULONG_PTR gdiplusToken;
    Status stat = GenericError;
    stat = GdiplusStartup( &gdiplusToken, &gdiplusStartupInput, NULL );
    if ( Ok != stat ) {
        return false;
    }

    // 重置状态
    stat = GenericError;

    // Get an image from the disk.
    Image* pImage = new Image(pszOriFilePath);

    do {
        if ( NULL == pImage ) {
            break;
        }

        // 获取长宽
        UINT ulHeight = pImage->GetHeight();
        UINT ulWidth = pImage->GetWidth();
        if ( ulWidth < 1 || ulHeight < 1 ) {
            break;
        }

        // Get the CLSID of the JPEG encoder.
        CLSID encoderClsid;
        if ( !GetEncoderClsid(L"image/jpeg", &encoderClsid) ) {
            break;
        }

        // The one EncoderParameter object has an array of values.
        // In this case, there is only one value (of type ULONG)
        // in the array. We will let this value vary from 0 to 100.
        EncoderParameters encoderParameters;
        encoderParameters.Count = 1;
        encoderParameters.Parameter[0].Guid = EncoderQuality;
        encoderParameters.Parameter[0].Type = EncoderParameterValueTypeLong;
        encoderParameters.Parameter[0].NumberOfValues = 1;
        encoderParameters.Parameter[0].Value = &quality;
        stat = pImage->Save(pszDestFilePah, &encoderClsid, &encoderParameters);
    } while(0);

    if ( pImage ) {
        delete pImage;
        pImage = NULL;
    }

    GdiplusShutdown(gdiplusToken);

    return ( ( stat == Ok ) ? true : false );
}

这两个算法,都关联了一个函数GetEncoderClsid,其实现是:

#include <Windows.h>
#include <GdiPlus.h>
#pragma comment( lib, "GdiPlus.lib" )
using namespace Gdiplus;

bool GetEncoderClsid(const WCHAR* pszFormat, CLSID* pClsid)
{
    UINT  unNum = 0;          // number of image encoders
    UINT  unSize = 0;         // size of the image encoder array in bytes

    ImageCodecInfo* pImageCodecInfo = NULL;

    // How many encoders are there?
    // How big (in bytes) is the array of all ImageCodecInfo objects?
    GetImageEncodersSize( &unNum, &unSize );
    if ( 0 == unSize ) {
        return false;  // Failure
    }

    // Create a buffer large enough to hold the array of ImageCodecInfo
    // objects that will be returned by GetImageEncoders.
    pImageCodecInfo = (ImageCodecInfo*)( malloc(unSize) );
    if ( !pImageCodecInfo ) {
        return false;  // Failure
    }

    // GetImageEncoders creates an array of ImageCodecInfo objects
    // and copies that array into a previously allocated buffer.
    // The third argument, imageCodecInfos, is a pointer to that buffer.
    GetImageEncoders( unNum, unSize, pImageCodecInfo );

    for ( UINT j = 0; j < unNum; ++j ) {
        if ( wcscmp( pImageCodecInfo[j].MimeType, pszFormat ) == 0 ) {
            *pClsid = pImageCodecInfo[j].Clsid;
            free(pImageCodecInfo);
            pImageCodecInfo = NULL;
            return true;  // Success
        }
    }

    free( pImageCodecInfo );
    pImageCodecInfo = NULL;
    return false;  // Failure
}

在我的测试代码中,文件名中包含A的为源文件,文件名中包含B的是尺寸压缩算法得到的文件,文件名中包含C的是质量压缩(尺寸不变)算法得到的文件。测试代码是

int _tmain(int argc, _TCHAR* argv[])
{
    CompressImagePixel( L"1A.jpg", L"1B.jpg",  100, 100 );
    CompressImageQuality( L"1A.jpg", L"1C.jpg", 30 );

    CompressImagePixel( L"2A.png", L"2B.jpg",  100, 100 );
    CompressImageQuality( L"2A.png", L"2C.jpg", 30 );

    CompressImagePixel( L"3A.bmp", L"3B.jpg",  100, 100 );
    CompressImageQuality( L"3A.bmp", L"3C.jpg", 30 );
	return 0;
}

其压缩结果是

从压缩结果看,尺寸压缩是稳定的,质量压缩是不稳定的。如果想通过压缩算法控制文件大小,需要结合这两种方法。但是需要指出的是,该质量压缩算法不可以滥用。因为在一定情况下,该质量压缩会使文件空间大小变大。

最后附上工程代码。

一种使用GDI+对图片尺寸和质量的压缩方法,布布扣,bubuko.com

时间: 2024-10-15 10:06:56

一种使用GDI+对图片尺寸和质量的压缩方法的相关文章

uploadify 限制图片尺寸

jquery uploadify可以限制文件类型,文件的大小,但对宽高没有限制,项目需要图片上传限制图片宽高度,避免客户上传大尺寸,目前我只前端设置判断宽高度首先我设置个隐藏的img元素 <img id="testimg" src="__ADMIN.IMG__/noavatar_big.gif" style="display:none"> 在uploadify的onUploadSuccess里做这个设置判断 当图片上传成功会返回一个图

[转]OpenCV图像金字塔:高斯金字塔、拉普拉斯金字塔与图片尺寸缩放

[OpenCV入门教程之十三]OpenCV图像金字塔:高斯金字塔.拉普拉斯金字塔与图片尺寸缩放 2014-05-18 18:58 36007人阅读 评论(54) 收藏 举报 本文章已收录于:  OpenCV知识库 本系列文章由@浅墨_毛星云 出品,转载请注明出处. 文章链接:http://blog.csdn.net/poem_qianmo/article/details/26157633 作者:毛星云(浅墨)    微博:http://weibo.com/u/1723155442 知乎:http

【OpenCV入门教程之十三】OpenCV图像金字塔:高斯金字塔、拉普拉斯金字塔与图片尺寸缩放

本系列文章由@浅墨_毛星云 出品,转载请注明出处. 文章链接:http://blog.csdn.net/poem_qianmo/article/details/26157633 作者:毛星云(浅墨)    微博:http://weibo.com/u/1723155442 知乎:http://www.zhihu.com/people/mao-xing-yun 邮箱: [email protected] 写作当前博文时配套使用的OpenCV版本: 2.4.9 这篇文章里,我们将一起探讨图像金字塔的一

大屏iPhone的适配 +iOS 图片尺寸要求

摘自:http://blog.ibireme.com/2014/09/16/adapted_to_iphone6/ 苹果公司官网设计介绍到:Retina显示屏的超高像素密度已超过人眼能分辨的范围.Retina对图像设计(图标.启动画面和其它所有像素有关的东西)有什么影响呢?如果我们的app要支持Retina,就要提供高分辨率的(宽x2,高x2)的图片.同时,为了支持没有Retina的设备,仍旧要准备低分辨率的版本. 换言之,我们要准备两套设计图. 针对不同分辨率的图片,苹果规定了一个命名规范:假

12、高斯金字塔、拉普拉斯金字塔与图片尺寸缩放

一.引言 我们经常会将某种尺寸的图像转换为其他尺寸的图像,如果放大或者缩小图片的尺寸,笼统来说的话,可以使用OpenCV为我们提供的如下两种方式: (1)resize函数.这是最直接的方式, (2)pyrUp( ).pyrDown( )函数.即图像金字塔相关的两个函数,对图像进行向上采样,向下采样的操作. pyrUp.pyrDown其实和专门用作放大缩小图像尺寸的resize在功能上差不多,披着图像金字塔的皮,说白了还是在对图像进行放大和缩小操作.另外需要指出的是,pyrUp.pyrDown在O

CSS3------background-size(背景图片尺寸属性)

background-size 可以设置背景图片的大小,数值包括 长度length和百分比percentage. 并且会根据背景原点位置 background-origin 设置其图片覆盖的范围.那么下面我们一起来了解这个background-size属性吧. background-size语法 w3c对background-size的语法规定如下: 属性名: background-size 属性值: <bg-size>* 其中 bg-size = [ <length> | <

图片未加载完成时预测图片尺寸

/***************************************************************************************     * 图片头数据加载就绪获取图片尺寸     * @version    2011.05.27     * @author    TangBin     * @see             * @param    {String}    图片路径     * @param    {Function}    尺寸就

像素、分辨率、图片尺寸

像素,一个点 分辨率,每英寸长度上,像素的数量,简写dpi,通常是300dpi 图片尺寸,图片的宽高,可用图片的像素数和分辨率计算出来,图片宽(cm厘米)=图片的宽像素数/分辨率,高=图片的高像素数/分辨率,打印时可设置dpi,这时图片尺寸会变化,具体尺寸可从上述公式计算. 如,像素数不变,分辨率增加,打印尺寸减小:像素数减小,分辨率不变,打印尺寸减小 另图片大小,即图片占硬盘容量, 跟像素数多,压缩比低,压缩质量高,大小越大. 如像素数不变,减小压缩比,文件大小增加

使用GDI+进行图片处理时要注意的问题

与GDI相比,GDI+要强大非常多.对于Windows应用程序来说,用GDI是比較多的,也是比較熟练的,GDI+相对用的较少一点,可是如今GDI+的使用已经非常普遍了.GDI+支持各种类型图片的处理,比方常见的bmp.jpg.gif.png等类型,特别是GDI+处理png图片时有非常大的优势.有时我们须要将图片文件载入到内存中,然后进行UI的绘制,因为要支持多种类型的图片的载入,所以首先想到的是使用GDI+中的图片处理类Image或Bitmap.有时我们也须要将内存中的位图数据,保存成各种类型的