缩放旋转使用的QMatrix,QMatrix提供了世界坐标系统的二维转换功能,可以使窗体变形,经常用于绘图程序中
镜像通过QImage::mirrored(bool horizontal, bool vertical);,其中参数表示是横向还是纵向进行镜像
1、缩放
1 QMatrix matrix; 2 matrix.scale(2,2); 3 img = img.transformed(matrix); //Img是一个图片,此时图片宽高均为原来2倍 4 showWidget->imgLabel->setPixmap(QPixmap::formImage(img));
2、旋转
1 QMatrix matrix; 2 matrix.rotate(270); 3 img = img.transformed(matrix); //Img是一个图片,此时图片旋转270度 4 showWidget->imgLabel->setPixmap(QPixmap::formImage(img));
3、镜像
1 img = img.mirrored(true, false); //横向镜像 2 showWidget->imgLabel->setPixmap(QPixmap::formImage(img));