真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Qt屏幕截圖控件如何實(shí)現(xiàn)

這篇文章主要講解了“Qt屏幕截圖控件如何實(shí)現(xiàn)”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Qt屏幕截圖控件如何實(shí)現(xiàn)”吧!

成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),麻江企業(yè)網(wǎng)站建設(shè),麻江品牌網(wǎng)站建設(shè),網(wǎng)站定制,麻江網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,麻江網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

一、前言

屏幕截圖控件在我的很多項(xiàng)目中都有用到,尤其是嵌入式的系統(tǒng)上的軟件,因?yàn)樵谇度胧较到y(tǒng)中,基本上系統(tǒng)都很精簡(jiǎn),甚至連UI都沒(méi)有,開(kāi)機(jī)之后直接運(yùn)行的就是Qt程序,很多時(shí)候需要對(duì)軟件進(jìn)行截圖保存下來(lái),用來(lái)編寫文檔和介紹,還有產(chǎn)品彩頁(yè)之類的,畢竟在板子上直接運(yùn)行的效果是最好的,還有一種辦法是將系統(tǒng)編譯成win的版本,用系統(tǒng)的截圖來(lái),但是嵌入式上很多代碼其實(shí)很不方便在win上運(yùn)行,甚至沒(méi)法運(yùn)行,而且還要外接很多接口來(lái)得到真正的運(yùn)行效果,所以還是采用直接在板子上的Qt程序中直接集成截圖的功能,需要的時(shí)候直接鼠標(biāo)右鍵彈出來(lái)選擇即可。

二、代碼思路

ScreenWidget::ScreenWidget(QWidget *parent) : QWidget(parent)
{
    //this->setWindowFlags(Qt::Tool | Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint | Qt::X11BypassWindowManagerHint);

    menu = new QMenu(this);
    menu->addAction("保存當(dāng)前截圖", this, SLOT(saveScreen()));
    menu->addAction("保存全屏截圖", this, SLOT(saveFullScreen()));
    menu->addAction("截圖另存為", this, SLOT(saveScreenOther()));
    menu->addAction("全屏另存為", this, SLOT(saveFullOther()));
    menu->addAction("退出截圖", this, SLOT(hide()));

    //取得屏幕大小
    screen = new Screen(QApplication::desktop()->size());
    //保存全屏圖像
    fullScreen = new QPixmap();
}

void ScreenWidget::paintEvent(QPaintEvent *)
{
    int x = screen->getLeftUp().x();
    int y = screen->getLeftUp().y();
    int w = screen->getRightDown().x() - x;
    int h = screen->getRightDown().y() - y;

    QPainter painter(this);

    QPen pen;
    pen.setColor(Qt::green);
    pen.setWidth(2);
    pen.setStyle(Qt::DotLine);
    painter.setPen(pen);
    painter.drawPixmap(0, 0, *bgScreen);

    if (w != 0 && h != 0) {
        painter.drawPixmap(x, y, fullScreen->copy(x, y, w, h));
    }

    painter.drawRect(x, y, w, h);

    pen.setColor(Qt::yellow);
    painter.setPen(pen);
    painter.drawText(x + 2, y - 8, tr("截圖范圍:( %1 x %2 ) - ( %3 x %4 )  圖片大小:( %5 x %6 )")
                     .arg(x).arg(y).arg(x + w).arg(y + h).arg(w).arg(h));
}

void ScreenWidget::showEvent(QShowEvent *)
{
    QPoint point(-1, -1);
    screen->setStart(point);
    screen->setEnd(point);

#if (QT_VERSION <= QT_VERSION_CHECK(5,0,0))
    *fullScreen = fullScreen->grabWindow(QApplication::desktop()->winId(), 0, 0, screen->width(), screen->height());
#else
    QScreen *pscreen = QApplication::primaryScreen();
    *fullScreen = pscreen->grabWindow(QApplication::desktop()->winId(), 0, 0, screen->width(), screen->height());
#endif

    //設(shè)置透明度實(shí)現(xiàn)模糊背景
    QPixmap pix(screen->width(), screen->height());
    pix.fill((QColor(160, 160, 160, 200)));
    bgScreen = new QPixmap(*fullScreen);
    QPainter p(bgScreen);
    p.drawPixmap(0, 0, pix);
}

三、效果圖

Qt屏幕截圖控件如何實(shí)現(xiàn)

感謝各位的閱讀,以上就是“Qt屏幕截圖控件如何實(shí)現(xiàn)”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Qt屏幕截圖控件如何實(shí)現(xiàn)這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


網(wǎng)頁(yè)題目:Qt屏幕截圖控件如何實(shí)現(xiàn)
標(biāo)題來(lái)源:http://weahome.cn/article/ggocjg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部