我正在尝试在 QLabel Widge 内旋转 89x89 图像。
#include "header.h"
disc::disc(QWidget *Parent) : QWidget(Parent)
{
orig_pixmap = new QPixmap();
rotate = new QLabel(this);
showDegrees = new QLabel(this);
orig_pixmap->load("pic.png");
degrees = 0;
rotate->resize(89,89);
rotate->move(100,10);
rotate->setStyleSheet("QLabel{background-color:red;}");
showDegrees->resize(100,100);
showDegrees->move(400,0);
}
void disc::rotate_disc()
{
QString string;
degrees++;
if(degrees == 360) degrees = 0;
QTransform rotate_disc;
rotate_disc.translate( (orig_pixmap->width()-rotate->width())/2 , (orig_pixmap->width()-rotate->height())/2);
rotate_disc.rotate(degrees,Qt::ZAxis);
QPixmap pixmap;
//pixmap = orig_disc->scaled(89,89,Qt::IgnoreAspectRatio,Qt::SmoothTransformation);
pixmap = orig_pixmap->transformed(rotate_disc,Qt::SmoothTransformation);
rotate->setPixmap(pixmap);
string.append("Degrees: " + QString::number(degrees) + "*");
showDegrees->setText(string);
}
即使它旋转。图像的一半在 QLabel 之外滚动,因此那一侧不可见。我怎样才能使它在图像中心的原点(0,0)处中心旋转。
这是文件
http://www65.zippyshare.com/v/85775455/file.html
如果你看它,你会发现图像就像向左弹跳一样。我怎样才能让它在黑色区域内旋转。
我每 10 毫秒为 rotate_disc() 函数设置一个信号超时。我正在使用它来深入学习 Qt。
谢谢你!