0

如何将文件中的图像插入 PlotWidget (plt1 = pg.PlotWidget(w);)?该图像适用于应出现一些计算和绘制点的布局。

我试图将图像插入到 PlotWidget 后面的 Qlabel 中并使 PlotWidget 透明,但没有工作,因为透明度会采用窗口的颜色而不是真正的透明度。

谢谢

4

1 回答 1

1

使用 QGraphicsPixmapItem:

plt1 = pg.PlotWidget(w)
img = pg.QtGui.QGraphicsPixmapItem(pg.QtGui.QPixmap(fileName))
plt1.addItem(img)

# depending on your preference, you probably want to invert the image:
img.scale(1, -1)

# OR invert the entire view:
plt.invertY(True)
于 2013-08-02T17:40:22.857 回答