Load QPixmap from QByteArray in Qt?

2019-06-19 15:56发布

I have a byte array with the contents of an image (in png/bmp or some other format).

How can I load it into a QPixmap?

3条回答
等我变得足够好
2楼-- · 2019-06-19 16:22
bool QPixmap::loadFromData ( const QByteArray & data, const char * format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor )

Format here is string literal like "PNG" or something similar

QPixmap p;
QByteArray pData;
// fill array with image
if(p.loadFromData(pData,"PNG"))
{
   // do something with pixmap
}
查看更多
放荡不羁爱自由
3楼-- · 2019-06-19 16:37

Use this constructor:

QImage ( const uchar * data, int width, int height, Format format )

Here is more info. After that, you can use QPixmap.convertFromImage() to create a pixmap.

查看更多
SAY GOODBYE
4楼-- · 2019-06-19 16:41

You should use the folowing, where your bytes are in the imageData variable in the format specified by the last parameter:

QPixmap pixmap = QPixmap::fromImage(
    QImage(
        (unsigned char *) imageData, 
        image_width, 
        image_height, 
        QImage::Format_RGB888
    )
);
查看更多
登录 后发表回答