Qt5 - 为什么不截图并保存到文件?

时间:2017-12-03 10:52:35

标签: c++ windows qt qt5 qpixmap

为什么不保存任何文件?

#include "mainwindow.h"
#include <QApplication>
#include <QPixmap>
#include <QPainter>
#include <QList>
#include <QScreen>


QPixmap grabScreens() {
  auto screens = QGuiApplication::screens();
  QList<QPixmap> scrs;
  int w = 0, h = 0, p = 0;
  foreach (auto scr, screens) {
    QPixmap pix = scr->grabWindow(0);
    w += pix.width();
    if (h < pix.height()) h = pix.height();
    scrs << pix;
  }
  QPixmap final(w, h);
  QPainter painter(&final);
  final.fill(Qt::black);
  foreach (auto scr, scrs) {
    painter.drawPixmap(QPoint(p, 0), scr);
    p += scr.width();
  }
  return final;
}


int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QPixmap pixmap = grabScreens();

    QFile file("file.jpg");
    file.open(QIODevice::WriteOnly);
    pixmap.save(&file, "JPG", 1);

    MainWindow w;
    w.show();

    return a.exec();
}

enter image description here

2 个答案:

答案 0 :(得分:2)

您要查找的文件应位于可执行文件的同一文件夹中。

如果您从Qtcreator运行代码,它应该位于构建目录中,如“项目”页面的“构建设置”中所指定。

答案 1 :(得分:0)

您应该考虑使用QStandardPaths来查询要保存的屏幕截图的可写位置。这样可以避免尝试写入只读目录的问题。