当鼠标悬停时Python绘制图像的一部分
我的问题与 Python GTK 有关
我有一个图像 -a JPG - 我将其绘制到绘图区域。我想显示图像的一部分 - 例如 10 像素 x 10 像素的正方形 - 仅显示鼠标指针当前所在的位置。距鼠标 10 x 10 像素平方的所有内容都应隐藏,即黑色。
我是 PyGtk 的新手,有人可以帮忙吗?
谢谢
My question relates to Python GTK
I have an image -a JPG - which I draw onto a drawing area. I want to reveal a portion of the image -say a 10pix by 10 px square -only where the mouse pointer is currently at. Everything 10 x 10 px square away from the mouse should hidden i.e. black.
I'm am new to PyGtk please can anyone help?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该做像你描述的那样的事情。我选择显示 50x50 的区域,因为您的区域太小,无法在指针下方看到。我也没有隐瞒这一点。
This should do something like you describe. I chose to show a 50x50 area since yours was kinda small to see under the pointer. I didn't hide that either.