X11:无法在使用XCreateWindow创建的透明窗口上绘制图像

问题描述 投票:0回答:1

我正在尝试创建一个简单的X11窗口,该窗口应显示带有透明区域的PNG文件。我希望窗口本身没有(不透明的)背景,以便PNG中的透明区域显示窗口后面的内容。

tl; dr我无法将图像放在半透明的窗口中;它给出了“不匹配”。

我可以使用XCreateWindow和XMatchVisualInfo成功创建半透明窗口:

XSetWindowAttributes attr;
attr.colormap = XCreateColormap(display, DefaultRootWindow(display), 
        vinfo.visual, AllocNone);
attr.border_pixel = 0;
attr.background_pixel = 0x80800000; // Red, semi-transparent

Window window = XCreateWindow(display, DefaultRootWindow(display), 0, 0,
        width, height, 0, vinfo.depth, InputOutput, vinfo.visual,
        CWColormap | CWBorderPixel | CWBackPixel, &attr);

(以下完整源代码)

然后我使用:]创建图像

// "image32" is a generated image - see source code below
XImage *ximage = XCreateImage(display, visual, DefaultDepth(display,DefaultScreen(display)),
        ZPixmap, 0, image32, width, height, 32, 0);

并在Expose事件期间显示图像:

XPutImage(display, window, DefaultGC(display, 0), ximage,
        0, 0, 0, 0, width, height);

我用gcc test.c -L/usr/X11R6/lib -lX11 -lXrandr -o test编译并用./test运行:

X Error of failed request:  BadMatch (invalid parameter attributes)
  Major opcode of failed request:  72 (X_PutImage)
  Serial number of failed request:  11
  Current serial number in output stream:  12

注意:

如果用这些替换创建窗口(XCreateWindow)的行:
Window window = XCreateSimpleWindow(display, RootWindow(display, 0), 0, 0,
        width, height, 1, 0, 0);

它正确显示一个窗口;但是,没有透明度。

我阅读了有关XCreateWindowXPutImageXCreateImage的文档,并尝试使用多个参数,但均未成功。

我已经阅读了this SO question,并尝试过色深;由于文档中提到的“错误匹配”也可能因视觉不正确而引发,因此我检查了代码是否在所有位置都发送了相同的视觉。

感谢您的任何帮助。

谢谢!

完整源代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>

// Window size
int height = 256, width = 256;

XImage *CreateTrueColorImage(Display *display, Visual *visual)
{

    int i, j;
    unsigned char *image32=(unsigned char *)malloc(width*height*4);
    unsigned char *p=image32;
    for(i=0; i<width; i++)
    {
        for(j=0; j<height;j++)
        {
            *p++ = i;
            *p++ = i;
            *p++ = j;
            *p++ = j; // alpha channel (should progressively get transparent towards left)
        }
    }

    // Replacing "DefaultDepth(display,DefaultScreen(display))" with a hardcoded 
    // 24 or 32 still doesn't work with XCreateWindow. XCreateSimpleWindow works
    // with hardcoded 24, but not 32.
    return XCreateImage(display, visual, DefaultDepth(display,DefaultScreen(display)),
            ZPixmap, 0, image32, width, height, 32, 0);
}

int main(int argc, char **argv)
{
    XImage *ximage;
    Display *display = XOpenDisplay(NULL);
    Visual *visual = DefaultVisual(display, 0);

    XVisualInfo vinfo;
    XMatchVisualInfo(display, DefaultScreen(display), 32, TrueColor, &vinfo);

    XSetWindowAttributes attr;
    attr.colormap = XCreateColormap(display, DefaultRootWindow(display), 
            vinfo.visual, AllocNone);
    attr.border_pixel = 0;
    attr.background_pixel = 0x80800000; // Red, semi-transparent

    //Window window = XCreateSimpleWindow(display, RootWindow(display, 0), 0, 0,
    //      width, height, 1, 0, 0);
    Window window = XCreateWindow(display, DefaultRootWindow(display), 0, 0,
            width, height, 0, vinfo.depth, InputOutput, vinfo.visual,
            CWColormap | CWBorderPixel | CWBackPixel, &attr);

    ximage = CreateTrueColorImage(display, vinfo.visual);
    XSelectInput(display, window, ButtonPressMask|ExposureMask);
    XMapWindow(display, window);

    while(1)
    {
        XEvent event;
        XNextEvent(display, &event);
        switch(event.type)
        {
        case Expose:
            XPutImage(display, window, DefaultGC(display, 0), ximage,
                    0, 0, 0, 0, width, height);
            break;
        case ButtonPress:
            exit(0);
        }
    }
}

我正在尝试创建一个简单的X11窗口,该窗口应显示带有透明区域的PNG文件。我希望窗口本身不具有(不透明的)背景,以便PNG中的透明区域...

c image x11 alpha xlib
1个回答
0
投票

我设法进行了两项更改以使其正常工作。首先,不要使用DefaultGC(display, 0),而是应为您的特定窗口创建GC。

© www.soinside.com 2019 - 2024. All rights reserved.