2020-10-23 03:54:50 +13:00
|
|
|
#include "xorg.h"
|
|
|
|
|
|
|
|
static Display *DISPLAY = NULL;
|
|
|
|
|
|
|
|
Display *getXDisplay(void) {
|
|
|
|
return DISPLAY;
|
|
|
|
}
|
|
|
|
|
2020-11-04 12:09:52 +13:00
|
|
|
int XDisplayOpen(char *name) {
|
|
|
|
DISPLAY = XOpenDisplay(name);
|
|
|
|
return DISPLAY == NULL;
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|
|
|
|
|
2020-11-04 12:09:52 +13:00
|
|
|
void XDisplayClose(void) {
|
|
|
|
XCloseDisplay(DISPLAY);
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
void XMove(int x, int y) {
|
|
|
|
Display *display = getXDisplay();
|
2020-10-30 06:07:04 +13:00
|
|
|
XWarpPointer(display, None, DefaultRootWindow(display), 0, 0, 0, 0, x, y);
|
2020-10-23 03:54:50 +13:00
|
|
|
XSync(display, 0);
|
|
|
|
}
|
|
|
|
|
2021-02-18 09:55:11 +13:00
|
|
|
void XCursorPosition(int *x, int *y) {
|
|
|
|
Display *display = getXDisplay();
|
|
|
|
Window root = DefaultRootWindow(display);
|
|
|
|
Window window;
|
|
|
|
int i;
|
|
|
|
unsigned mask;
|
|
|
|
XQueryPointer(display, root, &root, &window, x, y, &i, &i, &mask);
|
|
|
|
}
|
|
|
|
|
2020-10-23 03:54:50 +13:00
|
|
|
void XScroll(int x, int y) {
|
|
|
|
int ydir = 4; /* Button 4 is up, 5 is down. */
|
|
|
|
int xdir = 6;
|
|
|
|
|
|
|
|
Display *display = getXDisplay();
|
|
|
|
|
|
|
|
if (y < 0) {
|
|
|
|
ydir = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x < 0) {
|
|
|
|
xdir = 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xi;
|
|
|
|
int yi;
|
|
|
|
|
|
|
|
for (xi = 0; xi < abs(x); xi++) {
|
|
|
|
XTestFakeButtonEvent(display, xdir, 1, CurrentTime);
|
|
|
|
XTestFakeButtonEvent(display, xdir, 0, CurrentTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (yi = 0; yi < abs(y); yi++) {
|
|
|
|
XTestFakeButtonEvent(display, ydir, 1, CurrentTime);
|
|
|
|
XTestFakeButtonEvent(display, ydir, 0, CurrentTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
XSync(display, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void XButton(unsigned int button, int down) {
|
2021-04-12 05:06:56 +12:00
|
|
|
if (button == 0)
|
|
|
|
return;
|
2021-01-18 07:10:49 +13:00
|
|
|
|
|
|
|
Display *display = getXDisplay();
|
|
|
|
XTestFakeButtonEvent(display, button, down, CurrentTime);
|
|
|
|
XSync(display, 0);
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|
|
|
|
|
2021-04-12 02:48:59 +12:00
|
|
|
static xkeyentry_t *xKeysHead = NULL;
|
2021-04-10 11:10:14 +12:00
|
|
|
|
2023-01-15 08:22:45 +13:00
|
|
|
// add keycode->keysym mapping to list
|
2021-04-10 11:10:14 +12:00
|
|
|
void XKeyEntryAdd(KeySym keysym, KeyCode keycode) {
|
|
|
|
xkeyentry_t *entry = (xkeyentry_t *) malloc(sizeof(xkeyentry_t));
|
2021-04-12 05:06:56 +12:00
|
|
|
if (entry == NULL)
|
2021-04-10 11:10:14 +12:00
|
|
|
return;
|
|
|
|
|
|
|
|
entry->keysym = keysym;
|
|
|
|
entry->keycode = keycode;
|
2021-04-12 02:48:59 +12:00
|
|
|
entry->next = xKeysHead;
|
|
|
|
xKeysHead = entry;
|
2021-04-10 11:10:14 +12:00
|
|
|
}
|
|
|
|
|
2023-01-15 08:22:45 +13:00
|
|
|
// get keycode for keysym from list
|
2021-04-10 11:10:14 +12:00
|
|
|
KeyCode XKeyEntryGet(KeySym keysym) {
|
|
|
|
xkeyentry_t *prev = NULL;
|
2021-04-12 02:48:59 +12:00
|
|
|
xkeyentry_t *curr = xKeysHead;
|
2021-04-10 11:10:14 +12:00
|
|
|
|
|
|
|
KeyCode keycode = 0;
|
|
|
|
while (curr != NULL) {
|
|
|
|
if (curr->keysym == keysym) {
|
|
|
|
keycode = curr->keycode;
|
|
|
|
|
|
|
|
if (prev == NULL) {
|
2021-04-12 02:48:59 +12:00
|
|
|
xKeysHead = curr->next;
|
2021-04-10 11:10:14 +12:00
|
|
|
} else {
|
|
|
|
prev->next = curr->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(curr);
|
|
|
|
return keycode;
|
|
|
|
}
|
|
|
|
|
|
|
|
prev = curr;
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// From https://github.com/TigerVNC/tigervnc/blob/0946e298075f8f7b6d63e552297a787c5f84d27c/unix/x0vncserver/XDesktop.cxx#L343-L379
|
2021-04-13 01:25:10 +12:00
|
|
|
KeyCode XkbKeysymToKeycode(Display* dpy, KeySym keysym) {
|
2021-04-10 11:10:14 +12:00
|
|
|
XkbDescPtr xkb;
|
|
|
|
XkbStateRec state;
|
|
|
|
unsigned int mods;
|
2021-04-13 01:25:10 +12:00
|
|
|
unsigned keycode;
|
2021-04-10 11:10:14 +12:00
|
|
|
|
|
|
|
xkb = XkbGetMap(dpy, XkbAllComponentsMask, XkbUseCoreKbd);
|
|
|
|
if (!xkb)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
XkbGetState(dpy, XkbUseCoreKbd, &state);
|
|
|
|
// XkbStateFieldFromRec() doesn't work properly because
|
|
|
|
// state.lookup_mods isn't properly updated, so we do this manually
|
|
|
|
mods = XkbBuildCoreState(XkbStateMods(&state), state.group);
|
|
|
|
|
|
|
|
for (keycode = xkb->min_key_code;
|
|
|
|
keycode <= xkb->max_key_code;
|
|
|
|
keycode++) {
|
|
|
|
KeySym cursym;
|
|
|
|
unsigned int out_mods;
|
|
|
|
XkbTranslateKeyCode(xkb, keycode, mods, &out_mods, &cursym);
|
|
|
|
if (cursym == keysym)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keycode > xkb->max_key_code)
|
|
|
|
keycode = 0;
|
|
|
|
|
|
|
|
XkbFreeKeyboard(xkb, XkbAllComponentsMask, True);
|
|
|
|
|
|
|
|
// Shift+Tab is usually ISO_Left_Tab, but RFB hides this fact. Do
|
|
|
|
// another attempt if we failed the initial lookup
|
|
|
|
if ((keycode == 0) && (keysym == XK_Tab) && (mods & ShiftMask))
|
2021-04-13 01:25:10 +12:00
|
|
|
return XkbKeysymToKeycode(dpy, XK_ISO_Left_Tab);
|
2021-04-10 11:10:14 +12:00
|
|
|
|
|
|
|
return keycode;
|
|
|
|
}
|
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
// From https://github.com/TigerVNC/tigervnc/blob/a434ef3377943e89165ac13c537cd0f28be97f84/unix/x0vncserver/XDesktop.cxx#L401-L453
|
|
|
|
KeyCode XkbAddKeyKeysym(Display* dpy, KeySym keysym) {
|
|
|
|
int types[1];
|
|
|
|
unsigned int key;
|
|
|
|
XkbDescPtr xkb;
|
|
|
|
XkbMapChangesRec changes;
|
|
|
|
KeySym *syms;
|
|
|
|
KeySym upper, lower;
|
2023-01-15 08:22:45 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
xkb = XkbGetMap(dpy, XkbAllComponentsMask, XkbUseCoreKbd);
|
2023-01-15 08:38:37 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
if (!xkb)
|
|
|
|
return 0;
|
2023-01-15 08:38:37 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
for (key = xkb->max_key_code; key >= xkb->min_key_code; key--) {
|
|
|
|
if (XkbKeyNumGroups(xkb, key) == 0)
|
|
|
|
break;
|
2023-01-15 08:22:45 +13:00
|
|
|
}
|
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
// no free keycodes
|
|
|
|
if (key < xkb->min_key_code)
|
|
|
|
return 0;
|
2023-01-15 08:38:37 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
// assign empty structure
|
|
|
|
changes = *(XkbMapChangesRec *) malloc(sizeof(XkbMapChangesRec));
|
|
|
|
for (int i = 0; i < sizeof(changes); i++) ((char *) &changes)[i] = 0;
|
2023-01-15 08:22:45 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
XConvertCase(keysym, &lower, &upper);
|
2023-01-15 08:22:45 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
if (upper == lower)
|
|
|
|
types[XkbGroup1Index] = XkbOneLevelIndex;
|
|
|
|
else
|
|
|
|
types[XkbGroup1Index] = XkbAlphabeticIndex;
|
2023-01-15 08:22:45 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
XkbChangeTypesOfKey(xkb, key, 1, XkbGroup1Mask, types, &changes);
|
2023-01-15 08:22:45 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
syms = XkbKeySymsPtr(xkb,key);
|
|
|
|
if (upper == lower)
|
|
|
|
syms[0] = keysym;
|
|
|
|
else {
|
|
|
|
syms[0] = lower;
|
|
|
|
syms[1] = upper;
|
2023-01-15 08:22:45 +13:00
|
|
|
}
|
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
changes.changed |= XkbKeySymsMask;
|
|
|
|
changes.first_key_sym = key;
|
|
|
|
changes.num_key_syms = 1;
|
2023-01-15 08:22:45 +13:00
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
if (XkbChangeMap(dpy, xkb, &changes)) {
|
|
|
|
return key;
|
2023-01-15 08:22:45 +13:00
|
|
|
}
|
|
|
|
|
2023-01-16 05:00:32 +13:00
|
|
|
return 0;
|
2023-01-15 08:22:45 +13:00
|
|
|
}
|
|
|
|
|
2021-04-10 11:10:14 +12:00
|
|
|
void XKey(KeySym keysym, int down) {
|
|
|
|
if (keysym == 0)
|
|
|
|
return;
|
2020-10-23 03:54:50 +13:00
|
|
|
|
2021-01-18 07:10:49 +13:00
|
|
|
Display *display = getXDisplay();
|
2021-04-10 11:10:14 +12:00
|
|
|
KeyCode keycode = 0;
|
|
|
|
|
|
|
|
if (!down)
|
|
|
|
keycode = XKeyEntryGet(keysym);
|
|
|
|
|
2023-01-15 08:22:45 +13:00
|
|
|
// Try to get keysyms from existing keycodes
|
2021-04-10 11:10:14 +12:00
|
|
|
if (keycode == 0)
|
2021-04-13 01:25:10 +12:00
|
|
|
keycode = XkbKeysymToKeycode(display, keysym);
|
2021-01-18 07:10:49 +13:00
|
|
|
|
|
|
|
// Map non-existing keysyms to new keycodes
|
2023-01-15 08:22:45 +13:00
|
|
|
if (keycode == 0)
|
2023-01-16 05:00:32 +13:00
|
|
|
keycode = XkbAddKeyKeysym(display, keysym);
|
2021-01-18 07:10:49 +13:00
|
|
|
|
2021-04-10 11:10:14 +12:00
|
|
|
if (down)
|
|
|
|
XKeyEntryAdd(keysym, keycode);
|
|
|
|
|
|
|
|
XTestFakeKeyEvent(display, keycode, down, CurrentTime);
|
2021-01-18 07:10:49 +13:00
|
|
|
XSync(display, 0);
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|
|
|
|
|
2023-03-14 05:55:41 +13:00
|
|
|
Status XSetScreenConfiguration(int width, int height, short rate) {
|
2023-02-15 09:18:47 +13:00
|
|
|
Display *display = getXDisplay();
|
|
|
|
Window root = RootWindow(display, 0);
|
|
|
|
XRRScreenConfiguration *conf = XRRGetScreenInfo(display, root);
|
|
|
|
|
|
|
|
XRRScreenSize *xrrs;
|
|
|
|
int num_sizes;
|
|
|
|
xrrs = XRRConfigSizes(conf, &num_sizes);
|
|
|
|
|
|
|
|
int size_index = -1;
|
|
|
|
for (int i = 0; i < num_sizes; i++) {
|
|
|
|
if (xrrs[i].width == width && xrrs[i].height == height) {
|
|
|
|
size_index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we cannot find the size
|
|
|
|
if (size_index == -1) {
|
|
|
|
return RRSetConfigFailed;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status status;
|
2023-03-14 05:55:41 +13:00
|
|
|
status = XRRSetScreenConfigAndRate(display, conf, root, size_index, RR_Rotate_0, rate, CurrentTime);
|
2023-02-15 09:18:47 +13:00
|
|
|
|
|
|
|
XRRFreeScreenConfigInfo(conf);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void XGetScreenConfiguration(int *width, int *height, short *rate) {
|
|
|
|
Display *display = getXDisplay();
|
|
|
|
Window root = RootWindow(display, 0);
|
|
|
|
XRRScreenConfiguration *conf = XRRGetScreenInfo(display, root);
|
|
|
|
|
|
|
|
Rotation current_rotation;
|
|
|
|
SizeID current_size_id = XRRConfigCurrentConfiguration(conf, ¤t_rotation);
|
|
|
|
|
|
|
|
XRRScreenSize *xrrs;
|
|
|
|
int num_sizes;
|
|
|
|
xrrs = XRRConfigSizes(conf, &num_sizes);
|
|
|
|
|
|
|
|
// if we cannot find the size
|
|
|
|
if (current_size_id >= num_sizes) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
*width = xrrs[current_size_id].width;
|
|
|
|
*height = xrrs[current_size_id].height;
|
|
|
|
*rate = XRRConfigCurrentRate(conf);
|
|
|
|
|
|
|
|
XRRFreeScreenConfigInfo(conf);
|
|
|
|
}
|
|
|
|
|
2020-10-23 03:54:50 +13:00
|
|
|
void XGetScreenConfigurations() {
|
2020-10-30 06:07:04 +13:00
|
|
|
Display *display = getXDisplay();
|
|
|
|
Window root = RootWindow(display, 0);
|
2020-10-23 03:54:50 +13:00
|
|
|
XRRScreenSize *xrrs;
|
2020-10-30 06:07:04 +13:00
|
|
|
int num_sizes;
|
2020-10-23 03:54:50 +13:00
|
|
|
|
|
|
|
xrrs = XRRSizes(display, 0, &num_sizes);
|
2020-10-30 06:07:04 +13:00
|
|
|
for (int i = 0; i < num_sizes; i++) {
|
2020-10-23 03:54:50 +13:00
|
|
|
short *rates;
|
2020-10-30 06:07:04 +13:00
|
|
|
int num_rates;
|
2020-10-23 03:54:50 +13:00
|
|
|
|
|
|
|
goCreateScreenSize(i, xrrs[i].width, xrrs[i].height, xrrs[i].mwidth, xrrs[i].mheight);
|
|
|
|
rates = XRRRates(display, 0, i, &num_rates);
|
2020-10-30 06:07:04 +13:00
|
|
|
for (int j = 0; j < num_rates; j++) {
|
2020-10-23 03:54:50 +13:00
|
|
|
goSetScreenRates(i, j, rates[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-15 09:18:47 +13:00
|
|
|
// Inspired by https://github.com/raboof/xrandr/blob/master/xrandr.c
|
|
|
|
void XCreateScreenMode(int width, int height, short rate) {
|
2020-10-23 03:54:50 +13:00
|
|
|
Display *display = getXDisplay();
|
|
|
|
Window root = RootWindow(display, 0);
|
|
|
|
|
2023-02-15 09:18:47 +13:00
|
|
|
char name[128];
|
|
|
|
XRRModeInfo mode;
|
|
|
|
mode = XCreateScreenModeInfo(width, height, rate);
|
|
|
|
|
|
|
|
snprintf(name, sizeof name, "%dx%d_%d", width, height, rate);
|
|
|
|
mode.nameLength = strlen(name);
|
|
|
|
mode.name = name;
|
|
|
|
|
|
|
|
// create new mode
|
|
|
|
XRRCreateMode(display, root, &mode);
|
|
|
|
XSync(display, 0);
|
|
|
|
|
|
|
|
// find newly created mode in resources
|
|
|
|
RRMode mode_id;
|
|
|
|
XRRScreenResources *resources = XRRGetScreenResources(display, root);
|
|
|
|
for (int i = 0; i < resources->nmode; ++i) {
|
|
|
|
if (strcmp(resources->modes[i].name, mode.name) == 0) {
|
|
|
|
mode_id = resources->modes[i].id;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add new mode to all outputs
|
|
|
|
for (int i = 0; i < resources->noutput; ++i) {
|
|
|
|
XRRAddOutputMode(display, resources->outputs[i], mode_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
XRRFreeScreenResources(resources);
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|
|
|
|
|
2023-02-15 09:18:47 +13:00
|
|
|
// Inspired by https://fossies.org/linux/xwayland/hw/xwayland/xwayland-cvt.c
|
|
|
|
XRRModeInfo XCreateScreenModeInfo(int hdisplay, int vdisplay, short vrefresh) {
|
|
|
|
XRRModeInfo modeinfo;
|
|
|
|
memset(&modeinfo, 0, sizeof modeinfo);
|
|
|
|
|
|
|
|
#ifdef _LIBCVT_H_
|
|
|
|
struct libxcvt_mode_info *mode_info;
|
|
|
|
|
|
|
|
// get screen mode from libxcvt, if available
|
|
|
|
mode_info = libxcvt_gen_mode_info(hdisplay, vdisplay, vrefresh, false, false);
|
|
|
|
|
|
|
|
modeinfo.width = mode_info->hdisplay;
|
|
|
|
modeinfo.height = mode_info->vdisplay;
|
|
|
|
modeinfo.dotClock = mode_info->dot_clock * 1000;
|
|
|
|
modeinfo.hSyncStart = mode_info->hsync_start;
|
|
|
|
modeinfo.hSyncEnd = mode_info->hsync_end;
|
|
|
|
modeinfo.hTotal = mode_info->htotal;
|
|
|
|
modeinfo.vSyncStart = mode_info->vsync_start;
|
|
|
|
modeinfo.vSyncEnd = mode_info->vsync_end;
|
|
|
|
modeinfo.vTotal = mode_info->vtotal;
|
|
|
|
modeinfo.modeFlags = mode_info->mode_flags;
|
|
|
|
|
|
|
|
free(mode_info);
|
|
|
|
#else
|
|
|
|
// fallback to a simple mode without refresh rate
|
|
|
|
modeinfo.width = hdisplay;
|
|
|
|
modeinfo.height = vdisplay;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return modeinfo;
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|
|
|
|
|
2021-01-13 10:54:13 +13:00
|
|
|
void XSetKeyboardModifier(int mod, int on) {
|
2020-10-23 03:54:50 +13:00
|
|
|
Display *display = getXDisplay();
|
2021-01-13 10:54:13 +13:00
|
|
|
XkbLockModifiers(display, XkbUseCoreKbd, mod, on ? mod : 0);
|
2020-10-23 03:54:50 +13:00
|
|
|
XFlush(display);
|
|
|
|
}
|
2021-01-10 10:58:18 +13:00
|
|
|
|
2021-01-13 11:35:11 +13:00
|
|
|
char XGetKeyboardModifiers() {
|
2021-01-13 10:54:13 +13:00
|
|
|
XkbStateRec xkbState;
|
|
|
|
Display *display = getXDisplay();
|
|
|
|
XkbGetState(display, XkbUseCoreKbd, &xkbState);
|
2021-01-13 11:35:11 +13:00
|
|
|
return xkbState.locked_mods;
|
2021-01-13 10:54:13 +13:00
|
|
|
}
|
|
|
|
|
2021-01-10 10:58:18 +13:00
|
|
|
XFixesCursorImage *XGetCursorImage(void) {
|
|
|
|
Display *display = getXDisplay();
|
|
|
|
return XFixesGetCursorImage(display);
|
|
|
|
}
|
2021-01-22 08:44:09 +13:00
|
|
|
|
|
|
|
char *XGetScreenshot(int *w, int *h) {
|
|
|
|
Display *display = getXDisplay();
|
|
|
|
Window root = DefaultRootWindow(display);
|
|
|
|
|
|
|
|
XWindowAttributes attr;
|
|
|
|
XGetWindowAttributes(display, root, &attr);
|
|
|
|
int width = attr.width;
|
|
|
|
int height = attr.height;
|
|
|
|
|
|
|
|
XImage *ximage = XGetImage(display, root, 0, 0, width, height, AllPlanes, ZPixmap);
|
|
|
|
|
|
|
|
*w = width;
|
|
|
|
*h = height;
|
|
|
|
char *pixels = (char *)malloc(width * height * 3);
|
|
|
|
|
2022-09-14 08:21:08 +12:00
|
|
|
for (int row = 0; row < height; row++) {
|
|
|
|
for (int col = 0; col < width; col++) {
|
|
|
|
int pos = ((row * width) + col) * 3;
|
2021-01-22 08:44:09 +13:00
|
|
|
unsigned long pixel = XGetPixel(ximage, col, row);
|
|
|
|
|
2022-09-14 08:21:08 +12:00
|
|
|
pixels[pos] = (pixel & ximage->red_mask) >> 16;
|
|
|
|
pixels[pos+1] = (pixel & ximage->green_mask) >> 8;
|
|
|
|
pixels[pos+2] = pixel & ximage->blue_mask;
|
2021-01-22 08:44:09 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XDestroyImage(ximage);
|
|
|
|
return pixels;
|
|
|
|
}
|