XGetSubImage

Syntax

XImage *XGetSubImage(display, d, x, y, width, height, plane_mask, format, dest_image, dest_x, 
                     dest_y)
      Display *display;
      Drawable d;
      int x, y;
      unsigned int width, height;
      unsigned long plane_mask;
      int format;
      XImage *dest_image;
      int dest_x, dest_y;

Arguments

display Specifies the connection to the X server.
d Specifies the drawable.
x
y
Specify the x and y coordinates, which are relative to the origin of the drawable and define the upper-left corner of the rectangle.
width
height
Specify the width and height of the subimage, which define the dimensions of the rectangle.
plane_mask Specifies the plane mask.
format Specifies the format for the image. You can pass XYPixmap or ZPixmap .
dest_image Specifies the destination image.
dest_x
dest_y
Specify the x and y coordinates, which are relative to the origin of the destination rectangle, specify its upper-left corner, and determine where the subimage is placed in the destination image.

Description

The XGetSubImage() function updates dest_image with the specified subimage in the same manner as XGetImage(). If the format argument is XYPixmap , the image contains only the bit planes you passed to the plane_mask argument. If the format argument is ZPixmap , XGetSubImage() returns as zero the bits in all planes not specified in the plane_mask argument. The function performs no range checking on the values in plane_mask and ignores extraneous bits. As a convenience, XGetSubImage() returns a pointer to the same XImage structure specified by dest_image.

The depth of the destination XImage structure must be the same as that of the drawable. If the specified subimage does not fit at the specified location on the destination image, the right and bottom edges are clipped. If the drawable is a pixmap, the given rectangle must be wholly contained within the pixmap, or a BadMatch error results. If the drawable is a window, the window must be viewable, and it must be the case that if there were no inferiors or overlapping windows, the specified rectangle of the window would be fully visible on the screen and wholly contained within the outside edges of the window, or a BadMatch error results. If the window has backing-store, then the backing-store contents are returned for regions of the window that are obscured by noninferior windows. If the window does not have backing-store, the returned contents of such obscured regions are undefined. The returned contents of visible regions of inferiors of a different depth than the specified window's depth are also undefined. If a problem occurs, XGetSubImage() returns NULL.

XGetSubImage() can generate BadDrawable , BadGC , BadMatch , and BadValue errors.

Diagnostics

BadDrawable A value for a Drawable argument does not name a defined Window or Pixmap.
BadGC A value for a GContext argument does not name a defined GContext.
BadMatch An InputOnly window is used as a Drawable.
BadMatch Some argument or pair of arguments has the correct type and range but fails to match in some other way required by the request.
BadValue Some numeric value falls outside the range of values accepted by the request. Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted. Any argument defined as a set of alternatives can generate this error.

See also

XAddPixel(), XCreateImage(), XDestroyImage(), XGetPixel(), XInitImage(), XPutImage(), XPutPixel(), "Transferring Images between Client and Server".
Christophe Tronche, ch@tronche.com