我是 C++ 和 Qt 的新手,但我想知道是否有人可以帮助我。
fb0
我有一个具有以下属性的原始图像文件:
Width: 1024
Height: 768
Format: rgb565 (QImage::Format_RGB16?)
我将如何去加载数据fb0
,然后在 Qt GUI 中显示这个图像?
解决方案:
QFile file("C:\\Users\\Username\\Desktop\\RawImage.raw");
if (!file.open(QFile::ReadOnly))
{
qDebug("Could not open file");
} else {
qDebug() << file.fileName() << " opened";
}
QByteArray array =file.readAll();
unsigned char* Data = (unsigned char*)&array.data()[0];
QImage myImage(Data,1024,768,QImage::Format_RGB16);
QLabel myLabel;
myLabel.setPixmap(QPixmap::fromImage(myImage));
myLabel.show();