从 Qt 中的 QByteArray 加载 QPixmap?

发布于 2024-11-26 11:38:54 字数 65 浏览 1 评论 0原文

我有一个包含图像内容的字节数组(png/bmp 或其他格式)。

如何将其加载到 QPixmap 中?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

奢望 2024-12-03 11:38:54
bool QPixmap::loadFromData ( const QByteArray & data, const char * format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor )

这里的格式是字符串文字,如 "PNG" 或类似的东西

QPixmap p;
QByteArray pData;
// fill array with image
if(p.loadFromData(pData,"PNG"))
{
   // do something with pixmap
}
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
}
面犯桃花 2024-12-03 11:38:54

您应该使用以下内容,其中字节位于 imageData 变量中,格式由最后一个参数指定:

QPixmap pixmap = QPixmap::fromImage(
    QImage(
        (unsigned char *) imageData, 
        image_width, 
        image_height, 
        QImage::Format_RGB888
    )
);

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
    )
);
同展鸳鸯锦 2024-12-03 11:38:54

使用此构造函数:

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

这里有更多信息。之后,您可以使用 QPixmap.convertFromImage() 来创建像素图。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文