Pixmap截图转换为低质量

时间:2016-07-10 18:22:57

标签: c++ qt qpixmap

我正在使用qt creator创建示例远程协助 我的项目有2部分服务器和客户端 客户端截取屏幕截图并将其发送到服务器,但截图图片质量很高,需要太大的尺寸,从局域网或网络协议发送它不是一个好主意 我需要调整图像大小或将其转换为低质量,以便几乎可以识别

这是我的截图代码

 void MainWindow::shootScreen()
 {
 originalPixmap = QPixmap(); // clear image for low memory situations
                             // on embedded devices.
 originalPixmap = QGuiApplication::primaryScreen()->grabWindow(0);

 //emit getScreen(originalPixmap);

 updateScreenshotLabel();


 }

 void MainWindow::updateScreenshotLabel()
 {
 this->ui->label_2->setPixmap(originalPixmap.scaled(this->ui->label_2-    >size(),
                                                  Qt::KeepAspectRatio,
                                                  Qt::SmoothTransformation));
 }

1 个答案:

答案 0 :(得分:0)

看起来你知道如何更改图像大小,为什么还不够?

只是做:

QPixmap smallPixmap = originalPixmap.scaled( QSize( originalPixmap.size().x()/4, originalPixmap.size().y()/4 ), Qt::KeepAspectRatio,                                                   Qt::SmoothTransformation );

发送smallPixmap代替originalPixmap

您可以(应该)使用QImageWriter压缩图像,这将允许您创建使用jpeg格式压缩的图像,这也应该减少内存使用量。

Check this,看起来他们正在做你想做的事。