CImage通过WinApi的SetWorldTransform来实现图片旋转

SetWorldTransform的功能是旋转画布,这样产生的效果就是图像旋转。因此,在旋转画布之前,要把要旋转的图像的位置和大小准备好,这样旋转之后,才能使图像正好出现在显示区域内。这需要计算两个关键参数,图像的左上角坐标和旋转中心坐标。因为是固定大小旋转,因此我们将中心设定在图像的显示中心。这样需要计算选中图像的高和宽。

如下图:

具体实现方法如下:

cpp 复制代码
void ImageRotation(CImage* dst, const CImage* src, double angle)
{
	// 计算弧度
	angle = angle * PI / 180;

	// 获取图像宽度和高度
	int width = src->GetWidth();
	int height = src->GetHeight();

	// 计算旋转后的图像大小,并调整目标图像尺寸
	int newWidth = static_cast<int>(abs(cos(angle)) * width + abs(sin(angle)) * height);
	int newHeight = static_cast<int>(abs(sin(angle)) * width + abs(cos(angle)) * height);

	dst->Create(newWidth, newHeight, src->GetBPP());

	CPoint centerPt;
	CRect rect;
	rect.SetRect(0, 0, dst->GetWidth(), dst->GetHeight());
	centerPt.x = (rect.left + rect.right) / 2;
	centerPt.y = (rect.top + rect.bottom) / 2;

	// 获取源图像和目标图像的设备上下文对象
	CImageDC hdcSource(*src);
	CImageDC hdcDest(*dst);

	// 设置图形模式
	SetGraphicsMode(hdcDest, GM_ADVANCED);

	// 保存旋转数据的结构体
	XFORM xform;
	xform.eM11 = static_cast<FLOAT>(cos(angle));
	xform.eM12 = static_cast<FLOAT>(sin(angle));
	xform.eM21 = static_cast<FLOAT>(-sin(angle));
	xform.eM22 = static_cast<FLOAT>(cos(angle));
	xform.eDx = (float)(centerPt.x - cos(angle)*centerPt.x + sin(angle)*centerPt.y);
	xform.eDy = (float)(centerPt.y - cos(angle)*centerPt.y - sin(angle)*centerPt.x);

	int nx, ny;
	nx = newWidth / 2 - width / 2;
	ny = newHeight / 2 - height / 2;

	// 进行旋转操作
	SetWorldTransform(hdcDest, &xform);
	CDC* pSrcDC = CDC::FromHandle(hdcSource);
	CDC* pDstDC = CDC::FromHandle(hdcDest);
	pDstDC->StretchBlt(nx, ny, src->GetWidth(), src->GetHeight(), pSrcDC, 0, 0, src->GetWidth(), src->GetHeight(), SRCCOPY);
}
相关推荐
阳光_你好32 分钟前
请详细说明opencv/c++对图片缩放
c++·opencv·计算机视觉
杰克逊的黑豹39 分钟前
不再迷茫:Rust, Zig, Go 和 C
c++·rust·go
Y.O.U..1 小时前
今日八股——C++
开发语言·c++·面试
xcLeigh1 小时前
OpenCV从零开始:30天掌握图像处理基础
图像处理·人工智能·python·opencv
Zhichao_971 小时前
【UE5 C++课程系列笔记】33——商业化Json读写
c++·ue5
云边有个稻草人2 小时前
【C++】第八节—string类(上)——详解+代码示例
开发语言·c++·迭代器·string类·语法糖auto和范围for·string类的常用接口·operator[]
惊鸿一博2 小时前
c++ &&(通用引用)和&(左值引用)区别
开发语言·c++
nuo5342023 小时前
黑马 C++ 学习笔记
c语言·c++·笔记·学习
DARLING Zero two♡3 小时前
C++类间的 “接力棒“ 传递:继承(上)
开发语言·c++·继承·里氏替换原则
会讲英语的码农3 小时前
如何学习C++以及C++的宏观认知
开发语言·c++·学习