这是一个更大的研究项目的子项目。我试图每 100 毫秒截取一次活动窗口(浏览器)的屏幕截图,然后将其存储在内存中以进行 OpenCV 处理。我从一个类似的问题中找到了截屏的解决方案,我目前正在使用代码来查看是否可以使用它。以下片段在获取整个桌面屏幕截图或特定窗口屏幕截图时似乎都有效,但它不适用于 GTK 窗口。我尝试在 Debian Squeeze 上截取 Iceweasel & Nautilus 的屏幕截图,但它根本不起作用。我是 X11 的菜鸟,不知道如何检查错误,或者我是否缺少 GTK 的东西,因为这似乎适用于 QT 窗口。
typedef int (*handler)(Display *, XErrorEvent *);
int handleX11Error(Display *d, XErrorEvent *er)
{
std::cout << "X11 Error: " << er->error_code << std::endl;
}
int main()
{
std::cout << "Sleeping 5 seconds" << std::endl;
// we may need to sleep if we want to focus another window.
sleep(5);
std::cout << "taking screenshot" << std::endl;
Display *display = XOpenDisplay(NULL);
//Window root = DefaultRootWindow(display);
XWindowAttributes gwa;
int revert = RevertToNone;
Window active;
XErrorEvent *error;
handler myHandler = &handleX11Error;
XSetErrorHandler(myHandler);
// X11 - Get Window that has focus
XGetInputFocus(display,&active,&revert);
//XGetWindowAttributes(display, root, &gwa);
if (!XGetWindowAttributes(display, active, &gwa))
std::cout << "XGetWindowAttributes failed" << std::endl;
int width = gwa.width;
int height = gwa.height;
//XImage *image = XGetImage(display,root, 0,0 , width,height,AllPlanes, ZPixmap);
XImage *image = XGetImage(display,active, 0,0 , width,height,XAllPlanes(), ZPixmap);
unsigned char *array = new unsigned char[width * height * 3];
CImg<unsigned char> pic(array,width,height,1,3);
for (int x = 0; x < width; x++){
for (int y = 0; y < height ; y++){
pic(x,y,0) = (XGetPixel(image,x,y) & image->red_mask ) >> 16;
pic(x,y,1) = (XGetPixel(image,x,y) & image->green_mask ) >> 8;
pic(x,y,2) = XGetPixel(image,x,y) & image->blue_mask;
}
}
delete[] array;
pic.save_png("blah.png");
std::cout << "Finished" << std::endl;
return 0;
}
上面的代码适用于完整的桌面截图或 QT。我没有收到错误(不知道我是否正确处理它们)。只是几个字节的空图片,这让我觉得其中一个 X 函数失败了(XGetInputFocus、XGetWindowAttributes、XGetImage),而我对 XGetFocus 的赌注无法正常工作。我错过了什么,或者,有什么替代方法吗?请注意,我正在运行 KDE (4.4.5),如果它很重要的话。
更新:
我尝试使用 Qt4 截取屏幕截图,虽然它工作正常,但在尝试从 X11 获取焦点窗口时,它会遇到同样的问题:
int main(int argc, char **argv)
{
sleep(5);
Display *display = XOpenDisplay(NULL);
int revert = RevertToNone;
Window active;
XGetInputFocus(display,&active,&revert);
QApplication app(argc, argv);
QPixmap pixmap = QPixmap::grabWindow(active);
pixmap.save("test.png","PNG");
QPushButton quit("Quit");
quit.resize(75, 30);
quit.setFont(QFont("Times", 18, QFont::Bold));
QObject::connect(&quit, SIGNAL(clicked()), &app, SLOT(quit()));
quit.show();
return app.exec();
}
因此,我确信 XGetInputFocus() 以某种方式失败了。