I'm currently trying to take a screenshot using libx11
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <stdio.h>
int main(void) {
XImage* pic;
Display* dpl;
unsigned int buffer_size;
dpl = XOpenDisplay("127.0.0.1:0.0");
pic = XGetImage(dpl, RootWindow(dpl, DefaultScreen(dpl)), 10, 10, 201, 201,
AllPlanes, ZPixmap);
}
if I compile the code using -lX11 and run it I keep getting a segmentation fault. Any ideas?
Thanks in advance!