如何缩放位图源

本主题演示如何使用 IWICBitmapScaler 组件缩放 IWICBitmapSource

缩放位图源

  1. 创建 IWICImagingFactory 对象,以 (WIC) 对象创建 Windows 图像处理组件。

    // Create WIC factory
    hr = CoCreateInstance(
        CLSID_WICImagingFactory,
        NULL,
        CLSCTX_INPROC_SERVER,
        IID_PPV_ARGS(&m_pIWICFactory)
        );
    
  2. 使用 CreateDecoderFromFilename 方法从图像文件创建 IWICBitmapDecoder

    HRESULT hr = S_OK;
    
    IWICBitmapDecoder *pIDecoder = NULL;
    IWICBitmapFrameDecode *pIDecoderFrame  = NULL;
    IWICBitmapScaler *pIScaler = NULL;
    
    
    hr = m_pIWICFactory->CreateDecoderFromFilename(
       L"turtle.jpg",                  // Image to be decoded
       NULL,                           // Do not prefer a particular vendor
       GENERIC_READ,                   // Desired read access to the file
       WICDecodeMetadataCacheOnDemand, // Cache metadata when needed
       &pIDecoder                      // Pointer to the decoder
       );
    
  3. 获取图像的第一个 IWICBitmapFrameDecode

    // Retrieve the first bitmap frame.
    if (SUCCEEDED(hr))
    {
       hr = pIDecoder->GetFrame(0, &pIDecoderFrame);
    }
    

    JPEG 文件格式仅支持单个帧。 由于此示例中的文件是 JPEG 文件,因此使用第一个帧 (0) 。 有关具有多个帧的图像格式,请参阅 如何检索图像的帧 以访问图像的每一帧。

  4. 创建用于图像缩放的 IWICBitmapScaler

    // Create the scaler.
    if (SUCCEEDED(hr))
    {
       hr = m_pIWICFactory->CreateBitmapScaler(&pIScaler);
    }
    
  5. 使用大小为一半的位图帧的图像数据初始化缩放器对象。

    // Initialize the scaler to half the size of the original source.
    if (SUCCEEDED(hr))
    {
       hr = pIScaler->Initialize(
          pIDecoderFrame,                    // Bitmap source to scale.
          uiWidth/2,                         // Scale width to half of original.
          uiHeight/2,                        // Scale height to half of original.
          WICBitmapInterpolationModeFant);   // Use Fant mode interpolation.
    }
    
  6. 绘制或处理缩放的位图源。

    下图演示了图像缩放。 左侧的原始图像为 200 x 130 像素。 右侧的图像是缩放到大小一半的原始图像。

    显示将图像缩放到较小大小的插图

另请参阅

编程指南

引用

示例