美文网首页
Qt QLabel显示遇到图片显示不全

Qt QLabel显示遇到图片显示不全

作者: Caiaolun | 来源:发表于2019-11-08 18:24 被阅读0次
    QLabel *m_pLabel = new QLabel;
    QPixmap *m_pPixmap = new QPixmap("xxx");
    
    
    m_pLabel->setScaledContents(true);
    m_pLabel->setPixmap(*pixmap);
    
    m_pPixmap->scaled(m_pLabel->size(), Qt::KeepAspectRatio);
    
    

    相关文章

      网友评论

          本文标题:Qt QLabel显示遇到图片显示不全

          本文链接:https://www.haomeiwen.com/subject/qmuwbctx.html