8

我想获取整个 x11 显示器的顶部/左侧像素 (0;0) 的 RGB 值。

到目前为止我得到了什么:

XColor c;
Display *d = XOpenDisplay((char *) NULL);

XImage *image;
image = XGetImage (d, RootWindow (d, DefaultScreen (d)), x, y, 1, 1, AllPlanes, XYPixmap);
c->pixel = XGetPixel (image, 0, 0);
XFree (image);
XQueryColor (d, DefaultColormap(d, DefaultScreen (d)), c);
cout << c.red << " " << c.green << " " << c.blue << "\n";

但我需要这些值是0..255or (0.00)..(1.00),而它们看起来0..57825,这不是我认识的格式。

此外,为了获得一个像素而复制整个屏幕非常慢。因为这将在速度关键的环境中使用,如果有人知道一种更高效的方法来做到这一点,我将不胜感激。也许使用XGetSubImage1x1 大小,但我在 x11 开发方面非常糟糕,不知道如何实现。

我该怎么办?

4

2 回答 2

12

我拿走了你的代码并让它编译。打印的值(缩放到 0-255)给我的值与我设置为桌面背景图像的值相同。

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

using namespace std;

int main(int, char**)
{
    XColor c;
    Display *d = XOpenDisplay((char *) NULL);

    int x=0;  // Pixel x 
    int y=0;  // Pixel y

    XImage *image;
    image = XGetImage (d, XRootWindow (d, XDefaultScreen (d)), x, y, 1, 1, AllPlanes, XYPixmap);
    c.pixel = XGetPixel (image, 0, 0);
    XFree (image);
    XQueryColor (d, XDefaultColormap(d, XDefaultScreen (d)), &c);
    cout << c.red/256 << " " << c.green/256 << " " << c.blue/256 << "\n";

    return 0;
}
于 2013-07-08T11:32:23.447 回答
2

XColor(3)手册页:

红色、绿色和蓝色值始终在 0 到 65535 的范围内,与显示硬件中实际使用的位数无关。服务器将这些值缩小到硬件使用的范围。黑色由 (0,0,0) 表示,白色由 (65535,65535,65535) 表示。在某些函数中,flags 成员控制使用红色、绿色和蓝色成员中的哪一个,并且可以是 DoRed、DoGreen 和 DoBlue 的零个或多个的包含 OR。

因此,您必须将这些值缩放到您想要的任何范围。

于 2013-07-08T03:06:56.310 回答