我正在尝试运行两个线程。一个是非 GUI 线程,另一个是 GUI 线程。现在,当我尝试使用命令将图像放入 QLabel 时,
imageLabel->setPixmap(QPixmap::fromImage(image));
我收到一个错误:QPixmap: 在 GUI 线程之外使用像素图是不安全的。
所以,要处理上面提到的问题。我已经QImage *image;
在我的头文件中声明了我的图像从 msg 到 *image 使用image = new QImage(&(msg->data[0]), msg->width, msg->height, QImage::Format_RGB888);
然后我想通过这个指针在QLabel中设置我的图像。但是我不明白,现在应该使用什么格式的setPixmap。通常的代码 imageLabel->setPixmap(QPixmap::fromImage(image));
现在不能像QImage *image
类型指针一样工作。
所以,基本上我正在尝试执行以下操作:-
QImage *image; //in header file
QLabel *imageLabel: //in header file
image = new QImage(&(msg->data[0]), msg->width, msg->height, QImage::Format_RGB888);
imageLabel->setPixmap(QPixmap::fromImage(???????));