实现

原始效果:

Qt QImage对图片镜像旋转_Qt

接口

关于镜像旋转,QImage中有对应的接口,可以通过设定水平、垂直方向旋转:

QImage QImage::mirrored(bool horizontal = false, bool vertical = true) const 

返回图片的镜像,取决于水平和垂直设置为true或false。

注意:原始图像没有发生改变。

1 QImage image(":/Images/logo");
2 QImage mirroredImage = image.mirrored(false, false);
3 QPixmap pixmap = QPixmap::fromImage(mirroredImage);

效果

参数 效果
false, false Qt QImage对图片镜像旋转_Qt_02
true, false Qt QImage对图片镜像旋转_Qt_03
false, true Qt QImage对图片镜像旋转_Qt_04
true, true Qt QImage对图片镜像旋转_Qt_05