将图像 url 插入单元格表格小部件 python
Insert image url into cell tablewidget python
我在将图像从 url 插入到 tablewidget pyqt5 in python 中的单元格时遇到问题。我想在单元格中显示图像。你可以在附件的图片上看到我的table。当我使用我的代码(如下)时,我在 cell.Please 中没有得到任何东西(零图像)告诉我如何做到这一点。
# sample link with image i use from loop:
#https://a.allegroimg.com/original/037495/be1ecbef43e7a2039a0bc42ceddf.jpg
zdi2 = 'https://a.allegroimg.com/original/037495/be1ecbef43e7a2039a0bc42ceddf.jpg'
data = urllib.urlopen(zdi2).read()
pixmap = QPixmap()
pixmap.loadFromData(data)
icon = QIcon(pixmap)
self.tableWidget_14.setItem(row_numer13,1,QTableWidgetItem(icon))
my tablewidget picture
问题已解决。解决方案是 QLabel:
zdi2 = 'https://a.allegroimg.com/original/037495/be1ecbef43e7a2039a0bc42ceddf.jpg'
r = requests.get(zdi2,stream=True)
assert r.status_code == 200
img = QImage()
assert img.loadFromData(r.content)
w = QLabel()
w.setPixmap(QPixmap.fromImage(img))
w.setGeometry(0,0,5,5)
w.resize(20,20)
self.tableWidget_14.setCellWidget(row_numer13,1,w)
我在将图像从 url 插入到 tablewidget pyqt5 in python 中的单元格时遇到问题。我想在单元格中显示图像。你可以在附件的图片上看到我的table。当我使用我的代码(如下)时,我在 cell.Please 中没有得到任何东西(零图像)告诉我如何做到这一点。
# sample link with image i use from loop:
#https://a.allegroimg.com/original/037495/be1ecbef43e7a2039a0bc42ceddf.jpg
zdi2 = 'https://a.allegroimg.com/original/037495/be1ecbef43e7a2039a0bc42ceddf.jpg'
data = urllib.urlopen(zdi2).read()
pixmap = QPixmap()
pixmap.loadFromData(data)
icon = QIcon(pixmap)
self.tableWidget_14.setItem(row_numer13,1,QTableWidgetItem(icon))
my tablewidget picture
问题已解决。解决方案是 QLabel:
zdi2 = 'https://a.allegroimg.com/original/037495/be1ecbef43e7a2039a0bc42ceddf.jpg'
r = requests.get(zdi2,stream=True)
assert r.status_code == 200
img = QImage()
assert img.loadFromData(r.content)
w = QLabel()
w.setPixmap(QPixmap.fromImage(img))
w.setGeometry(0,0,5,5)
w.resize(20,20)
self.tableWidget_14.setCellWidget(row_numer13,1,w)