Qt with XComposite problem

佐手、 提交于 2019-12-13 03:54:30

问题


I'm trying to write a simple program, which redirects all the windows to the backbuffer( as the composite manager does ), then write them to pixmap and save to disk. But I got this error:

(.text.startup+0x5e):-1: error: undefined reference to `XCompositeRedirectSubwindows'
(.text.startup+0x171):-1: error: undefined reference to `XCompositeNameWindowPixmap'
:-1: error: collect2: ld returned 1 exit status

Here is the code :

#include <QApplication>
#include <QDebug>
#include <X11/Xlib.h>
#include <QPaintDevice>
#include <QX11Info>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include <X11/extensions/Xcomposite.h>
#include <X11/extensions/Xrender.h>
#include <X11/extensions/Xdamage.h>

#include <QPixmap>
#include <QWidget>

int main( int argc, char *argv[] )
{
    QApplication app( argc, argv );
    app.setGraphicsSystem("native");

    Picture frontBuffer;
    XRenderPictFormat *format;
    Window rootWindow;
    int depth;

    Display *dpy = XOpenDisplay( getenv("DISPLAY") );
    rootWindow = XRootWindow( dpy, XDefaultScreen( dpy ) );

    depth = DefaultDepth( dpy, DefaultScreen(dpy) );

    // Redirect all the windows
    XCompositeRedirectSubwindows( dpy, rootWindow, CompositeRedirectManual );

    // Get the format
    format = XRenderFindVisualFormat( dpy, DefaultVisual( dpy, DefaultScreen(dpy) ) );

    XRenderPictureAttributes pa;
    pa.subwindow_mode = IncludeInferiors;

    // Creating front buffer
    frontBuffer = XRenderCreatePicture( dpy, rootWindow, format, CPSubwindowMode, &pa );

    uint nwindows;
    Window root_return, parent_return, *windows;

    XQueryTree( dpy, rootWindow, &root_return,
                    &parent_return, &windows, &nwindows );

    for ( uint i = 0; i < nwindows; i++ ) {
            XWindowAttributes attr;
            if ( !XGetWindowAttributes( dpy, windows[i], &attr ) )
                    continue;

            Pixmap pix = XCompositeNameWindowPixmap( dpy, windows[i] );

            Picture pic = XRenderCreatePicture( dpy, pix, format, 0, 0 );

            QPixmap pixmap(540, 900);
            XRenderComposite( dpy, PictOpSrc, pic, None, pixmap.x11PictureHandle(),
                                          0, 0, 0, 0, 0 , 0, 540, 900 );
            pixmap.save( QString::number( i )+".png", "PNG" );
        }
    }
    XFree( windows );
    return app.exec();
}

回答1:


Did you link your program with libXcomposite? That's the library which defines those functions.




回答2:


Compile with -lXcomposite or with `pkg-config --libs xcomposite`



来源:https://stackoverflow.com/questions/7252179/qt-with-xcomposite-problem

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!