QLabel与QGraphicsView的表现

时间:2012-09-21 00:27:14

标签: performance qt qgraphicsview qlabel

我正在学习QT,我对QLabel和QGraphics视图在平移时的性能差异感到困惑。

我将一个巨大的36Mpixels(D800)jpeg文件读入QLabel或QGraphics对象,并尝试使用QLabel / Graphics拖动全尺寸图像。令人惊讶的是,QLabel提供了非常平滑的移动,而QGRaphicsView平移是不稳定的。

简化的QGraphicsView代码是:

QApplication::setGraphicsSystem("raster");    
...
QGraphicsView  view();
view.setDragMode(QGraphicsView::ScrollHandDrag);
view.setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
view.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
view.setFrameStyle(QFrame::NoFrame);
view.showFullScreen();

QGraphicsPixmapItem *pmItem = new QGraphicsPixmapItem(pixMap);
scene.addItem(pmItem); // only one item in the scene
//view.setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform); // no difference
view.show();

简化的基于QLabel的代码是:

void MyQLabel::mouseMoveEvent(QMouseEvent *event){
    if(_leftButtonPressed) {
            // calculate new {_x, _y} position
            repaint();
        }
    } else super::mouseMoveEvent(event);
}
void MyQLabel::paintEvent(QPaintEvent *aEvent){
    QPainter paint(this);
    paint.drawPixmap(_x, _y, pixMap);
}

... // Somewhere in the code:
MyQLabel _myLabel(NULL);
_myLabel.showFullScreen();
_myLabel.show();

感觉QGraphicsView正在跳过一些位置(快速拖动),而QLabel在所有中间图像上绘制。

我想念什么?

谢谢 亚历

0 个答案:

没有答案