获取 QImage 中的鼠标位置

发布于 2024-10-16 03:52:16 字数 64 浏览 2 评论 0原文

我需要获取鼠标当前悬停位置的 QImage 坐标。就像在图像编辑程序中一样,我们可以看到鼠标当前悬停的像素的坐标。

I need to get the coordinates of a QImage of where the mouse is currently hovering. Like in image editing programs, where we can see the coordinates of the pixel the mouse in currently hovering.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绻影浮沉 2024-10-23 03:52:16

调用setMouseTracking(true),并覆盖mouseMoveEvent。每当鼠标在 QImage 内移动时,您的 mouseMoveEvent 函数就会被调用。 (您必须创建 QImage 的子类才能执行此操作。)

Call setMouseTracking(true), and override mouseMoveEvent. Your mouseMoveEvent function will be called whenever the mouse moves inside the QImage. (You have to create a subclass of QImage to do this.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文