如何翻转和旋转位图源
本主题演示如何使用 IWICBitmapFlipRotator 组件轮换 IWICBitmapSource 。
翻转和旋转位图源
创建 IWICImagingFactory 对象,以 (WIC) 对象创建 Windows 映像组件。
// Create WIC factory hr = CoCreateInstance( CLSID_WICImagingFactory, NULL, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&m_pIWICFactory) );
使用 CreateDecoderFromFilename 方法从图像文件创建 IWICBitmapDecoder 。
HRESULT hr = S_OK; IWICBitmapDecoder *pIDecoder = NULL; IWICBitmapFrameDecode *pIDecoderFrame = NULL; IWICBitmapFlipRotator *pIFlipRotator = 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 );
获取图像的第一个 IWICBitmapFrameDecode 。
// Retrieve the first bitmap frame. if (SUCCEEDED(hr)) { hr = pIDecoder->GetFrame(0, &pIDecoderFrame); }
JPEG 文件格式仅支持单个帧。 由于此示例中的文件是 JPEG 文件,因此使用第一个帧 (
0
) 。 有关具有多个帧的图像格式,请参阅 如何检索图像的帧 以访问图像的每个帧。创建用于翻转图像的 IWICBitmapFlipRotator 。
// Create the flip/rotator. if (SUCCEEDED(hr)) { hr = m_pIWICFactory->CreateBitmapFlipRotator(&pIFlipRotator); }
使用沿垂直 y 轴) 水平翻转 (位图框的图像数据初始化翻转/旋转器对象。
// Initialize the flip/rotator to flip the original source horizontally. if (SUCCEEDED(hr)) { hr = pIFlipRotator->Initialize( pIDecoderFrame, // Bitmap source to flip. WICBitmapTransformFlipHorizontal); // Flip the pixels along the // vertical y-axis. }
有关其他旋转和翻转选项,请参阅 WICBitmapTransformOptions 。
绘制或处理翻转位图源。
注意
IWICBitmapFlipRotator 接口继承自 IWICBitmapSource 接口,因此你可以在接受 IWICBitmapSource 的任意位置使用初始化的翻转/旋转器对象。
下图演示了沿垂直 x 轴) 水平翻转图像 (。
另请参阅