问题标签 [qgraphicspixmapitem]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
23 浏览

pyqt5 - PyQt:如何设置 QGraphicsPixmapItem 的大小

我将 QPixMap 插入到 QGraphicsPixmapItem 中,现在我需要调整我需要的大小。但我根本没有成功,我发现的一切都不起作用。我需要帮助。

这就是课堂的样子,我希望它有所帮助。如果需要更多的东西,我会补充。

通过添加此功能解决的问题:

0 投票
0 回答
14 浏览

python - 从 QGraphicsScene PyQt5 中的缩放图像中获取 ROI

在QGraphicsScene中添加了QGraphicsPixmapItem。图像是通过setPhoto方法插入的。wheelEvent方法放大或缩小图像。

如果图像被缩放,我想将图像的显示部分作为 ROI(img[y:y+h,x:x+w]),QGraphicsPixmapItem(或其他)中是否有一些方法可以给我 x,y ,w,h 如果图像被缩放或者我必须在方法wheelEvent中计算它?

谢谢。

示例代码: