13

我需要以捕获屏幕(作为打印屏幕)的方式访问像素颜色数据,进行一些图像识别,之后我需要在屏幕上生成鼠标事件,例如左键单击、拖放(移动鼠标按下按钮时,然后松开)。完成后,图像将被删除。

注意:我需要捕获整个屏幕用户可以看到的所有内容,并且我需要模拟我的程序窗口外的点击(如果它有任何区别)

规格:Linux ubuntu 语言:C++

性能不是很重要,“打印屏幕”功能将每 10 秒执行一次。该过程的持续时间最长可达 24 小时,因此方法需要稳定且无内存泄漏(与往常一样 :)

我能够在 windows 中使用 win GDI 和一些 windows 事件进行操作,但我不知道如何在 Linux 中执行此操作。

非常感谢

4

4 回答 4

20
//sg

//Solution using Xlib for those who use Linux
#include <X11/Xlib.h>
#include<stdio.h>
#include<unistd.h>
#include <stdlib.h>
#include <string.h>

#include <unistd.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>

void mouseClick(int button)
{
    Display *display = XOpenDisplay(NULL);

    XEvent event;

    if(display == NULL)
    {
        fprintf(stderr, "Cannot initialize the display\n");
        exit(EXIT_FAILURE);
    }

    memset(&event, 0x00, sizeof(event));

    event.type = ButtonPress;
    event.xbutton.button = button;
    event.xbutton.same_screen = True;

    XQueryPointer(display, RootWindow(display, DefaultScreen(display)), &event.xbutton.root, &event.xbutton.window, &event.xbutton.x_root, &event.xbutton.y_root, &event.xbutton.x, &event.xbutton.y, &event.xbutton.state);

    event.xbutton.subwindow = event.xbutton.window;

    while(event.xbutton.subwindow)
    {
        event.xbutton.window = event.xbutton.subwindow;

        XQueryPointer(display, event.xbutton.window, &event.xbutton.root, &event.xbutton.subwindow, &event.xbutton.x_root, &event.xbutton.y_root, &event.xbutton.x, &event.xbutton.y, &event.xbutton.state);
    }

    if(XSendEvent(display, PointerWindow, True, 0xfff, &event) == 0) fprintf(stderr, "Error\n");

    XFlush(display);

    usleep(100000);

    event.type = ButtonRelease;
    event.xbutton.state = 0x100;

    if(XSendEvent(display, PointerWindow, True, 0xfff, &event) == 0) fprintf(stderr, "Error\n");

    XFlush(display);

    XCloseDisplay(display);
}
int main(int argc,char * argv[]) {

    int x , y;
    x=atoi(argv[1]);
    y=atoi(argv[2]);
    Display *display = XOpenDisplay(0);

    Window root = DefaultRootWindow(display);
    XWarpPointer(display, None, root, 0, 0, 0, 0, x, y);
    mouseClick(Button1);
    XFlush(display);
    XCloseDisplay(display);
    return 0;
}

构建它,然后模拟在 x 处的点击,y 执行以下操作:

$ ./a.out x y

IE

$ g++ -lX11 sgmousesim2.cpp

$ ./a.out 123 13

以防万一你仍然感兴趣。

于 2012-01-09T18:02:00.020 回答
1

Swinput是一种模拟鼠标/按键事件的解决方案。您可能需要为您的内核编译它。Xorg 提供了一些用于记录鼠标/键事件的标头,但我认为它目前已损坏。有一个C代码evtest可用于从文件/dev/input/eventX中捕获事件。/dev/input/mice这可能会有所帮助。

编辑:

错误已在 Xorg 记录扩展中修复,因此它可能也可以正常工作。

于 2010-04-09T11:58:13.250 回答
1

我无法使用@axiom 使用的方法进行点击,只能移动指针。我改用这个:(Ubuntu 18.04)。

编译:g++ mouse_click.cpp -lX11 -lXtst -lstdc++

#include<stdio.h>
#include<unistd.h>
#include <stdlib.h>
#include <string.h>

#include <unistd.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/extensions/XTest.h>


void mouseClick(int button)
{
    Display *display = XOpenDisplay(NULL);

    // click left button
    XTestFakeButtonEvent(display, Button1, true, 0);
    XFlush(display);

    usleep(10000);

    // release left mouse
    XTestFakeButtonEvent(display, Button1, false, 0);
    XFlush(display);


    XCloseDisplay(display);


}
int main(int argc,char * argv[]) {

    int x , y;
    x=atoi(argv[1]);
    y=atoi(argv[2]);
    Display *display = XOpenDisplay(0);

    Window root = DefaultRootWindow(display);
    XTestFakeMotionEvent(display, root, x, y, 0);
    XFlush(display);
    mouseClick(Button1);
    XFlush(display);
    XCloseDisplay(display);
    return 0;
}
于 2019-07-12T07:40:46.593 回答
0

要使其正常工作,您必须在扭曲指针后调用 XFlush

在 linux Mint19 (Cinamon 3.8) XWarpPointer(display, None, root, 0, 0, 0, 0, x, y) 上测试过;XFlush(显示);

于 2018-12-05T19:43:48.597 回答