image转pixmap qt,PIL图像到QPixmap转换问题

在PyQT GUI中使用QGraphicsScene显示PIL.Image时遇到颜色变化的问题。通过将PIL图像转换为QPixmap,发现显示的颜色与原始图像不符。解决方案涉及利用PIL.ImageQt模块将图像转换为Qt兼容格式,从而正确显示图像。
摘要由CSDN通过智能技术生成

I've been struggling with this challenge for the best of today, I've managed to get a good point using previous posts and other resources.

I'm trying to convert a PIL.Image to a QPixmap so that I can display using a QgraphicsScene on my PyQT GUI. However when the picture is displayed the colours have changed?? Has anyone ever experienced this issue?

The code I use for this is as below.

self.graphicsScene.clear()

im = Image.open('Penguins.jpg')

im = im.convert("RGBA")

data = im.tobytes("raw","RGBA")

qim = QtGui.QImage(data, im.size[0], im.size[1], QtGui.QImage.Format_ARGB32)

pix = QtGui.QPixmap.fromImage(qim)

self.graphicsScene.addPixmap(pix)

self.graphicsView.fitInView(QtCore.QRectF(0,0,im.size[0], im.size[1]), QtCore.Qt.KeepAspectRatio)

self.gra

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值