图像中的 Qt 小部件形状
如何创建一个只是透明图像的小部件或窗口? 我的意思是在这个程序中: sakura 脚本播放器
我尝试的是:
label = QtGui.QLabel(None,
QtCore.Qt.FramelessWindowHint | QtCore.Qt.WindowStaysOnTopHint)
label.setPixmap(QtGui.QPixmap('c:\transparent.png'))
label.setScaledContents(True)
label.show()
但它只生成一个矩形窗口,尽管图像是透明的
How can I create a widget or window that will be just a transparent image?
I mean something like in this program: sakura script player
What i tried is:
label = QtGui.QLabel(None,
QtCore.Qt.FramelessWindowHint | QtCore.Qt.WindowStaysOnTopHint)
label.setPixmap(QtGui.QPixmap('c:\transparent.png'))
label.setScaledContents(True)
label.show()
but it generates just a rectangle window, in spite of image's transparency
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
QWidget::setMask()
以及从QPixmap
创建QBitmap
掩码的函数之一:createMaskFromAlpha()
)。Qt 发行版中曾经有一个类似 xpenguin 的示例,但他们用形状时钟替换了它(如果您有 Qt 3.3,请查看
examples/tux/tux.cpp
)。You would use a combination of
QWidget::setMask()
and one of the functions that createQBitmap
masks fromQPixmap
s:createMaskFromAlpha()
instead).There used to be an xpenguin-like example in the Qt distribution, but they replaced it with a shaped clock (if you have Qt 3.3 around, check out
examples/tux/tux.cpp
).