旋转QGraphicsPixmapItem会导致剪切,如果调整大小而不保持纵横比

时间:2015-08-05 22:53:56

标签: qt rotation transformation qgraphicsitem qpixmap

我正在尝试轮换一个QGraphicsPixmapItem孩子。对于其他QGraphicsItem,旋转和缩放工作正常。但对于QGraphicsPixmapItem,如果尺寸不保持纵横比,而不是旋转,我会受到剪切。

示例代码:

#include <QApplication>
#include <QGraphicsView>
#include <QMessageBox>
#include <QGraphicsPixmapItem>
#include <QFileDialog>

int main(int argc, char *argv[])
{
    QGraphicsScene s;
    s.setSceneRect(-200, -200, 500, 500);
    QGraphicsView view(&s);
    view.show();

    QGraphicsPixmapItem p;
    QString fileName = QFileDialog::getOpenFileName(0, QObject::tr("Open Image File"), QString(), QObject::tr("Png files (*.png);;Jpeg files (*.jpg *.jpeg);;Bitmap files (*.bmp)"));
    p.setPixmap(QPixmap(fileName));
    s.addItem(&p);
    QMessageBox::information(0, "", "");

    QTransform original = p.transform();

    // scale aspect ratio then rotate
    QTransform scalingTransform0(0.5, 0, 0, 0, 0.5, 0, 0, 0, 1);
    // p.setTransformOriginPoint(p.boundingRect().center()); // doesn't help shear
    p.setTransform(scalingTransform0 * original);
    p.setRotation(20);
    QMessageBox::information(0, "", "");

    // scale
    QTransform scalingTransform(0.5, 0, 0, 0, 1, 0, 0, 0, 1);
    p.setTransform(scalingTransform * original);
    QMessageBox::information(0, "", "");

    // rotate
    p.setRotation(20);
    QMessageBox::information(0, "", "");

    // unrotate then rotate again
    p.setRotation(0);
    QMessageBox::information(0, "", "");
    QTransform rotTransform = p.transform().rotate(20);
    p.setTransform(rotTransform);

    // or p.rotate(20);
    return app.exec();
}

结果:

enter image description here

对于QGraphicsPixmapItem,我不知道如何在没有剪切的情况下进行简单的旋转,并且该项目必须记住旋转。

1 个答案:

答案 0 :(得分:0)

QGraphicsPixmapItem行为如此不一致仍然是一个谜。

解决方案:
缩放项目时,缩放像素图,将结果像素图应用于项目 在这种情况下,旋转将起作用(因为QGraphicsPixmapItem没有真正缩放)。

QPixmap p1 = pixmap.scaled(100, 100, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
p.setPixmap(p1);
p.setRotation(20);

这种方法失去了质量,所以我最终重新加载了文件

QPixmap p1 = (QPixmap(fileName)).scaled(100, 100, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
p.setPixmap(p1);
p.setRotation(20);

如果有更好的解决方案,我很乐意看到它。