Graphics Functions Once you have established a connection to a display, you can use the Xlib graphics functions to: Clear and copy areas Draw points, lines, rectangles, and arcs Fill areas Manipulate fonts Draw text Transfer images between clients and the server If the same drawable and GC is used for each call, Xlib batches back-to-back calls to XDrawPoint, XDrawLine, XDrawRectangle, XFillArc, and XFillRectangle. Note that this reduces the total number of requests sent to the server. Clearing Areas Xlib provides functions that you can use to clear an area or the entire window. Because pixmaps do not have defined backgrounds, they cannot be filled by using the functions described in this section. Instead, to accomplish an analogous operation on a pixmap, you should use XFillRectangle, which sets the pixmap to a known value. To clear a rectangular area of a given window, use XClearArea. Areasclearing Clearingareas XClearArea XClearArea Display *display Window w intx, y unsignedintwidth, height Bool exposures display Specifies the connection to the X server. w Specifies the window. and specify the upper-left corner of the rectangle x y Specify the x and y coordinates(Xy. width height Specify the width and height(Wh. exposures Specifies a Boolean value that indicates if Expose events are to be generated. The XClearArea function paints a rectangular area in the specified window according to the specified dimensions with the window's background pixel or pixmap. The subwindow-mode effectively is ClipByChildren. If width is zero, it is replaced with the current width of the window minus x. If height is zero, it is replaced with the current height of the window minus y. If the window has a defined background tile, the rectangle clipped by any children is filled with this tile. If the window has background None, the contents of the window are not changed. In either case, if exposures is True, one or more Expose events are generated for regions of the rectangle that are either visible or are being retained in a backing store. If you specify a window whose class is InputOnly, a BadMatch error results. XClearArea can generate BadMatch, BadValue, and BadWindow errors. To clear the entire area in a given window, use XClearWindow. Windowclearing Clearingwindows XClearWindow XClearWindow Display *display Window w display Specifies the connection to the X server. w Specifies the window. The XClearWindow function clears the entire area in the specified window and is equivalent to XClearArea (display, w, 0, 0, 0, 0, False). If the window has a defined background tile, the rectangle is tiled with a plane-mask of all ones and GXcopy function. If the window has background None, the contents of the window are not changed. If you specify a window whose class is InputOnly, a BadMatch error results. XClearWindow can generate BadMatch and BadWindow errors. Copying Areas Xlib provides functions that you can use to copy an area or a bit plane. To copy an area between drawables of the same root and depth, use XCopyArea. Areascopying Copyingareas XCopyArea XCopyArea Display *display Drawablesrc, dest GC gc intsrc_x, src_y unsignedintwidth, height intdest_x, dest_y display Specifies the connection to the X server. src dest Specify the source and destination rectangles to be combined. gc Specifies the GC. src_x src_y Specify the x and y coordinates, which are relative to the origin of the source rectangle and specify its upper-left corner. and destination rectangles width height Specify the width and height(Wh. and specify its upper-left corner dest_x dest_y Specify the x and y coordinates(Dx. The XCopyArea function combines the specified rectangle of src with the specified rectangle of dest. The drawables must have the same root and depth, or a BadMatch error results. If regions of the source rectangle are obscured and have not been retained in backing store or if regions outside the boundaries of the source drawable are specified, those regions are not copied. Instead, the following occurs on all corresponding destination regions that are either visible or are retained in backing store. If the destination is a window with a background other than None, corresponding regions of the destination are tiled with that background (with plane-mask of all ones and GXcopy function). Regardless of tiling or whether the destination is a window or a pixmap, if graphics-exposures is True, then GraphicsExpose events for all corresponding destination regions are generated. If graphics-exposures is True but no GraphicsExpose events are generated, a NoExpose event is generated. Note that by default graphics-exposures is True in new GCs. This function uses these GC components: function, plane-mask, subwindow-mode, graphics-exposures, clip-x-origin, clip-y-origin, and clip-mask. XCopyArea can generate BadDrawable, BadGC, and BadMatch errors. To copy a single bit plane of a given drawable, use XCopyPlane. Planecopying Copyingplanes XCopyPlane XCopyPlane Display *display Drawablesrc, dest GC gc intsrc_x, src_y unsignedintwidth, height intdest_x, dest_y unsignedlong plane display Specifies the connection to the X server. src dest Specify the source and destination rectangles to be combined. gc Specifies the GC. src_x src_y Specify the x and y coordinates, which are relative to the origin of the source rectangle and specify its upper-left corner. width height Specify the width and height(Wh. and specify its upper-left corner dest_x dest_y Specify the x and y coordinates(Dx. plane Specifies the bit plane. You must set exactly one bit to 1. The XCopyPlane function uses a single bit plane of the specified source rectangle combined with the specified GC to modify the specified rectangle of dest. The drawables must have the same root but need not have the same depth. If the drawables do not have the same root, a BadMatch error results. If plane does not have exactly one bit set to 1 and the value of plane is not less than %2 sup n%, where n is the depth of src, a BadValue error results. Effectively, XCopyPlane forms a pixmap of the same depth as the rectangle of dest and with a size specified by the source region. It uses the foreground/background pixels in the GC (foreground everywhere the bit plane in src contains a bit set to 1, background everywhere the bit plane in src contains a bit set to 0) and the equivalent of a CopyArea protocol request is performed with all the same exposure semantics. This can also be thought of as using the specified region of the source bit plane as a stipple with a fill-style of FillOpaqueStippled for filling a rectangular area of the destination. This function uses these GC components: function, plane-mask, foreground, background, subwindow-mode, graphics-exposures, clip-x-origin, clip-y-origin, and clip-mask. XCopyPlane can generate BadDrawable, BadGC, BadMatch, and BadValue errors. Drawing Points, Lines, Rectangles, and Arcs Xlib provides functions that you can use to draw: A single point or multiple points A single line or multiple lines A single rectangle or multiple rectangles A single arc or multiple arcs Some of the functions described in the following sections use these structures: XSegment typedef struct { short x1, y1, x2, y2; } XSegment; XPoint typedef struct { short x, y; } XPoint; XRectangle typedef struct { short x, y; unsigned short width, height; } XRectangle; XArc typedef struct { short x, y; unsigned short width, height; short angle1, angle2; /* Degrees * 64 */ } XArc; All x and y members are signed integers. The width and height members are 16-bit unsigned integers. You should be careful not to generate coordinates and sizes out of the 16-bit ranges, because the protocol only has 16-bit fields for these values. Drawing Single and Multiple Points Pointsdrawing Drawingpoints XDrawPoints XDrawPoint To draw a single point in a given drawable, use XDrawPoint. XDrawPoint XDrawPoint Display *display Drawable d GC gc intx, y display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. x y Specify the x and y coordinates where you want the point drawn. To draw multiple points in a given drawable, use XDrawPoints. XDrawPoints XDrawPoints Display *display Drawable d GC gc XPoint *points int npoints int mode display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. points Specifies an array of points. npoints Specifies the number of points in the array. mode Specifies the coordinate mode. You can pass CoordModeOrigin or CoordModePrevious. The XDrawPoint function uses the foreground pixel and function components of the GC to draw a single point into the specified drawable; XDrawPoints draws multiple points this way. CoordModeOrigin treats all coordinates as relative to the origin, and CoordModePrevious treats all coordinates after the first as relative to the previous point. XDrawPoints draws the points in the order listed in the array. Both functions use these GC components: function, plane-mask, foreground, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. XDrawPoint can generate BadDrawable, BadGC, and BadMatch errors. XDrawPoints can generate BadDrawable, BadGC, BadMatch, and BadValue errors. Drawing Single and Multiple Lines Linesdrawing Drawinglines XDrawLine XDrawLines Polygonsdrawing Drawingpolygons XDrawSegments To draw a single line between two points in a given drawable, use XDrawLine. XDrawLine XDrawLine Display *display Drawable d GC gc intx1,y1,x2, y2 display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. x1 y1 x2 y2 Specify the points (x1, y1) and (x2, y2) to be connected. To draw multiple lines in a given drawable, use XDrawLines. XDrawLines XDrawLines Display *display Drawable d GC gc XPoint *points int npoints int mode display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. points Specifies an array of points. npoints Specifies the number of points in the array. mode Specifies the coordinate mode. You can pass CoordModeOrigin or CoordModePrevious. To draw multiple, unconnected lines in a given drawable, use XDrawSegments. XDrawSegments XDrawSegments Display *display Drawable d GC gc XSegment *segments int nsegments display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. segments Specifies an array of segments. nsegments Specifies the number of segments in the array. The XDrawLine function uses the components of the specified GC to draw a line between the specified set of points (x1, y1) and (x2, y2). It does not perform joining at coincident endpoints. For any given line, XDrawLine does not draw a pixel more than once. If lines intersect, the intersecting pixels are drawn multiple times. The XDrawLines function uses the components of the specified GC to draw npoints-1 lines between each pair of points (point[i], point[i+1]) in the array of XPoint structures. It draws the lines in the order listed in the array. The lines join correctly at all intermediate points, and if the first and last points coincide, the first and last lines also join correctly. For any given line, XDrawLines does not draw a pixel more than once. If thin (zero line-width) lines intersect, the intersecting pixels are drawn multiple times. If wide lines intersect, the intersecting pixels are drawn only once, as though the entire PolyLine protocol request were a single, filled shape. CoordModeOrigin treats all coordinates as relative to the origin, and CoordModePrevious treats all coordinates after the first as relative to the previous point. The XDrawSegments function draws multiple, unconnected lines. For each segment, XDrawSegments draws a line between (x1, y1) and (x2, y2). It draws the lines in the order listed in the array of XSegment structures and does not perform joining at coincident endpoints. For any given line, XDrawSegments does not draw a pixel more than once. If lines intersect, the intersecting pixels are drawn multiple times. All three functions use these GC components: function, plane-mask, line-width, line-style, cap-style, fill-style, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. The XDrawLines function also uses the join-style GC component. All three functions also use these GC mode-dependent components: foreground, background, tile, stipple, tile-stipple-x-origin, tile-stipple-y-origin, dash-offset, and dash-list. XDrawLine, XDrawLines, and XDrawSegments can generate BadDrawable, BadGC, and BadMatch errors. XDrawLines also can generate BadValue errors. Drawing Single and Multiple Rectangles Rectanglesdrawing Drawingrectangles XDrawRectangle XDrawRectangles To draw the outline of a single rectangle in a given drawable, use XDrawRectangle. XDrawRectangle XDrawRectangle Display *display Drawable d GC gc intx, y unsignedintwidth, height display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. x y Specify the x and y coordinates(Xy. width height Specify the width and height(Wh. To draw the outline of multiple rectangles in a given drawable, use XDrawRectangles. XDrawRectangles XDrawRectangles Display *display Drawable d GC gc XRectangle rectangles[] int nrectangles display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. rectangles Specifies an array of rectangles. nrectangles Specifies the number of rectangles in the array. The XDrawRectangle and XDrawRectangles functions draw the outlines of the specified rectangle or rectangles as if a five-point PolyLine protocol request were specified for each rectangle: [x,y] [x+width,y] [x+width,y+height] [x,y+height] [x,y] For the specified rectangle or rectangles, these functions do not draw a pixel more than once. XDrawRectangles draws the rectangles in the order listed in the array. If rectangles intersect, the intersecting pixels are drawn multiple times. Both functions use these GC components: function, plane-mask, line-width, line-style, cap-style, join-style, fill-style, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. They also use these GC mode-dependent components: foreground, background, tile, stipple, tile-stipple-x-origin, tile-stipple-y-origin, dash-offset, and dash-list. XDrawRectangle and XDrawRectangles can generate BadDrawable, BadGC, and BadMatch errors. Drawing Single and Multiple Arcs Drawingarcs XDrawArc Arcsdrawing XDrawArcs To draw a single arc in a given drawable, use XDrawArc. XDrawArc XDrawArc Display *display Drawable d GC gc intx, y unsignedintwidth, height intangle1, angle2 display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and specify the upper-left corner of the bounding rectangle x y Specify the x and y coordinates(Xy. width height Specify the width and height(Wh. angle1 Specifies the start of the arc relative to the three-o'clock position from the center, in units of degrees * 64. angle2 Specifies the path and extent of the arc relative to the start of the arc, in units of degrees * 64. To draw multiple arcs in a given drawable, use XDrawArcs. XDrawArcs XDrawArcs Display *display Drawable d GC gc XArc *arcs int narcs display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. arcs Specifies an array of arcs. narcs Specifies the number of arcs in the array. delim %% XDrawArc draws a single circular or elliptical arc, and XDrawArcs draws multiple circular or elliptical arcs. Each arc is specified by a rectangle and two angles. The center of the circle or ellipse is the center of the rectangle, and the major and minor axes are specified by the width and height. Positive angles indicate counterclockwise motion, and negative angles indicate clockwise motion. If the magnitude of angle2 is greater than 360 degrees, XDrawArc or XDrawArcs truncates it to 360 degrees. For an arc specified as %[ ~x, ~y, ~width , ~height, ~angle1, ~angle2 ]%, the origin of the major and minor axes is at % [ x +^ {width over 2} , ~y +^ {height over 2} ]%, and the infinitely thin path describing the entire circle or ellipse intersects the horizontal axis at % [ x, ~y +^ {height over 2} ]% and % [ x +^ width , ~y +^ { height over 2 }] % and intersects the vertical axis at % [ x +^ { width over 2 } , ~y ]% and % [ x +^ { width over 2 }, ~y +^ height ]%. These coordinates can be fractional and so are not truncated to discrete coordinates. The path should be defined by the ideal mathematical path. For a wide line with line-width lw, the bounding outlines for filling are given by the two infinitely thin paths consisting of all points whose perpendicular distance from the path of the circle/ellipse is equal to lw/2 (which may be a fractional value). The cap-style and join-style are applied the same as for a line corresponding to the tangent of the circle/ellipse at the endpoint. For an arc specified as % [ ~x, ~y, ~width, ~height, ~angle1, ~angle2 ]%, the angles must be specified in the effectively skewed coordinate system of the ellipse (for a circle, the angles and coordinate systems are identical). The relationship between these angles and angles expressed in the normal coordinate system of the screen (as measured with a protractor) is as follows: % roman "skewed-angle" ~ = ~ atan left ( tan ( roman "normal-angle" ) * width over height right ) +^ adjust% The skewed-angle and normal-angle are expressed in radians (rather than in degrees scaled by 64) in the range % [ 0 , ~2 pi ]% and where atan returns a value in the range % [ - pi over 2 , ~pi over 2 ] % and adjust is: %0% for normal-angle in the range % [ 0 , ~pi over 2 ]% %pi% for normal-angle in the range % [ pi over 2 , ~{3 pi} over 2 ]% %2 pi% for normal-angle in the range % [ {3 pi} over 2 , ~2 pi ]% For any given arc, XDrawArc and XDrawArcs do not draw a pixel more than once. If two arcs join correctly and if the line-width is greater than zero and the arcs intersect, XDrawArc and XDrawArcs do not draw a pixel more than once. Otherwise, the intersecting pixels of intersecting arcs are drawn multiple times. Specifying an arc with one endpoint and a clockwise extent draws the same pixels as specifying the other endpoint and an equivalent counterclockwise extent, except as it affects joins. If the last point in one arc coincides with the first point in the following arc, the two arcs will join correctly. If the first point in the first arc coincides with the last point in the last arc, the two arcs will join correctly. By specifying one axis to be zero, a horizontal or vertical line can be drawn. Angles are computed based solely on the coordinate system and ignore the aspect ratio. Both functions use these GC components: function, plane-mask, line-width, line-style, cap-style, join-style, fill-style, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. They also use these GC mode-dependent components: foreground, background, tile, stipple, tile-stipple-x-origin, tile-stipple-y-origin, dash-offset, and dash-list. XDrawArc and XDrawArcs can generate BadDrawable, BadGC, and BadMatch errors. Filling Areas Xlib provides functions that you can use to fill: A single rectangle or multiple rectangles A single polygon A single arc or multiple arcs Filling Single and Multiple Rectangles Fillingrectangles XFillRectangle Rectanglefilling XFillRectangles To fill a single rectangular area in a given drawable, use XFillRectangle. XFillRectangle XFillRectangle Display *display Drawable d GC gc intx, y unsignedintwidth, height display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and specify the upper-left corner of the rectangle x y Specify the x and y coordinates(Xy. width height Specify the width and height(Wh. To fill multiple rectangular areas in a given drawable, use XFillRectangles. XFillRectangles XFillRectangles Display *display Drawable d GC gc XRectangle *rectangles int nrectangles display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. rectangles Specifies an array of rectangles. nrectangles Specifies the number of rectangles in the array. The XFillRectangle and XFillRectangles functions fill the specified rectangle or rectangles as if a four-point FillPolygon protocol request were specified for each rectangle: [x,y] [x+width,y] [x+width,y+height] [x,y+height] Each function uses the x and y coordinates, width and height dimensions, and GC you specify. XFillRectangles fills the rectangles in the order listed in the array. For any given rectangle, XFillRectangle and XFillRectangles do not draw a pixel more than once. If rectangles intersect, the intersecting pixels are drawn multiple times. Both functions use these GC components: function, plane-mask, fill-style, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. They also use these GC mode-dependent components: foreground, background, tile, stipple, tile-stipple-x-origin, and tile-stipple-y-origin. XFillRectangle and XFillRectangles can generate BadDrawable, BadGC, and BadMatch errors. Filling a Single Polygon To fill a polygon area in a given drawable, use XFillPolygon. Polygonsfilling Fillingpolygon XFillPolygon XFillPolygon Display *display Drawable d GC gc XPoint *points int npoints int shape int mode display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. points Specifies an array of points. npoints Specifies the number of points in the array. shape Specifies a shape that helps the server to improve performance. You can pass Complex, Convex, or Nonconvex. mode Specifies the coordinate mode. You can pass CoordModeOrigin or CoordModePrevious. XFillPolygon fills the region closed by the specified path. The path is closed automatically if the last point in the list does not coincide with the first point. XFillPolygon does not draw a pixel of the region more than once. CoordModeOrigin treats all coordinates as relative to the origin, and CoordModePrevious treats all coordinates after the first as relative to the previous point. Depending on the specified shape, the following occurs: If shape is Complex, the path may self-intersect. Note that contiguous coincident points in the path are not treated as self-intersection. If shape is Convex, for every pair of points inside the polygon, the line segment connecting them does not intersect the path. If known by the client, specifying Convex can improve performance. If you specify Convex for a path that is not convex, the graphics results are undefined. If shape is Nonconvex, the path does not self-intersect, but the shape is not wholly convex. If known by the client, specifying Nonconvex instead of Complex may improve performance. If you specify Nonconvex for a self-intersecting path, the graphics results are undefined. The fill-rule of the GC controls the filling behavior of self-intersecting polygons. This function uses these GC components: function, plane-mask, fill-style, fill-rule, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. It also uses these GC mode-dependent components: foreground, background, tile, stipple, tile-stipple-x-origin, and tile-stipple-y-origin. XFillPolygon can generate BadDrawable, BadGC, BadMatch, and BadValue errors. Filling Single and Multiple Arcs XFillArc Arcsfilling Fillingarcs To fill a single arc in a given drawable, use XFillArc. XFillArc XFillArc Display *display Drawable d GC gc intx, y unsignedintwidth, height intangle1, angle2 display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and specify the upper-left corner of the bounding rectangle x y Specify the x and y coordinates(Xy. width height Specify the width and height(Wh. angle1 Specifies the start of the arc relative to the three-o'clock position from the center, in units of degrees * 64. angle2 Specifies the path and extent of the arc relative to the start of the arc, in units of degrees * 64. To fill multiple arcs in a given drawable, use XFillArcs. XFillArcs XFillArcs Display *display Drawable d GC gc XArc *arcs int narcs display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. arcs Specifies an array of arcs. narcs Specifies the number of arcs in the array. For each arc, XFillArc or XFillArcs fills the region closed by the infinitely thin path described by the specified arc and, depending on the arc-mode specified in the GC, one or two line segments. For ArcChord, the single line segment joining the endpoints of the arc is used. For ArcPieSlice, the two line segments joining the endpoints of the arc with the center point are used. XFillArcs fills the arcs in the order listed in the array. For any given arc, XFillArc and XFillArcs do not draw a pixel more than once. If regions intersect, the intersecting pixels are drawn multiple times. Both functions use these GC components: function, plane-mask, fill-style, arc-mode, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. They also use these GC mode-dependent components: foreground, background, tile, stipple, tile-stipple-x-origin, and tile-stipple-y-origin. XFillArc and XFillArcs can generate BadDrawable, BadGC, and BadMatch errors. Font Metrics Font A font is a graphical description of a set of characters that are used to increase efficiency whenever a set of small, similar sized patterns are repeatedly used. This section discusses how to: Load and free fonts Obtain and free font names Compute character string sizes Compute logical extents Query character string sizes The X server loads fonts whenever a program requests a new font. The server can cache fonts for quick lookup. Fonts are global across all screens in a server. Several levels are possible when dealing with fonts. Most applications simply use XLoadQueryFont to load a font and query the font metrics. Characters in fonts are regarded as masks. Except for image text requests, the only pixels modified are those in which bits are set to 1 in the character. This means that it makes sense to draw text using stipples or tiles (for example, many menus gray-out unusable entries). The XFontStruct structure contains all of the information for the font and consists of the font-specific information as well as a pointer to an array of XCharStruct structures for the characters contained in the font. The XFontStruct, XFontProp, and XCharStruct structures contain: XCharStruct typedef struct { short lbearing; /* origin to left edge of raster */ short rbearing; /* origin to right edge of raster */ short width; /* advance to next char's origin */ short ascent; /* baseline to top edge of raster */ short descent; /* baseline to bottom edge of raster */ unsigned short attributes; /* per char flags (not predefined) */ } XCharStruct; XFontProp typedef struct { Atom name; unsigned long card32; } XFontProp; XChar2b typedef struct { /* normal 16 bit characters are two bytes */ unsigned char byte1; unsigned char byte2; } XChar2b; XFontStruct typedef struct { XExtData *ext_data; /* hook for extension to hang data */ Font fid; /* Font id for this font */ unsigned direction; /* hint about the direction font is painted */ unsigned min_char_or_byte2; /* first character */ unsigned max_char_or_byte2; /* last character */ unsigned min_byte1; /* first row that exists */ unsigned max_byte1; /* last row that exists */ Bool all_chars_exist; /* flag if all characters have nonzero size */ unsigned default_char; /* char to print for undefined character */ int n_properties; /* how many properties there are */ XFontProp *properties; /* pointer to array of additional properties */ XCharStruct min_bounds; /* minimum bounds over all existing char */ XCharStruct max_bounds; /* maximum bounds over all existing char */ XCharStruct *per_char; /* first_char to last_char information */ int ascent; /* logical extent above baseline for spacing */ int descent; /* logical descent below baseline for spacing */ } XFontStruct; X supports single byte/character, two bytes/character matrix, and 16-bit character text operations. Note that any of these forms can be used with a font, but a single byte/character text request can only specify a single byte (that is, the first row of a 2-byte font). You should view 2-byte fonts as a two-dimensional matrix of defined characters: byte1 specifies the range of defined rows and byte2 defines the range of defined columns of the font. Single byte/character fonts have one row defined, and the byte2 range specified in the structure defines a range of characters. The bounding box of a character is defined by the XCharStruct of that character. When characters are absent from a font, the default_char is used. When fonts have all characters of the same size, only the information in the XFontStruct min and max bounds are used. The members of the XFontStruct have the following semantics: The direction member can be either FontLeftToRight or FontRightToLeft. It is just a hint as to whether most XCharStruct elements have a positive (FontLeftToRight) or a negative (FontRightToLeft) character width metric. The core protocol defines no support for vertical text. If the min_byte1 and max_byte1 members are both zero, min_char_or_byte2 specifies the linear character index corresponding to the first element of the per_char array, and max_char_or_byte2 specifies the linear character index of the last element. If either min_byte1 or max_byte1 are nonzero, both min_char_or_byte2 and max_char_or_byte2 are less than 256, and the 2-byte character index values corresponding to the per_char array element N (counting from 0) are: byte1 = N/D + min_byte1 byte2 = N\\D + min_char_or_byte2 where: D = max_char_or_byte2 - min_char_or_byte2 + 1 / = integer division \\ = integer modulus If the per_char pointer is NULL, all glyphs between the first and last character indexes inclusive have the same information, as given by both min_bounds and max_bounds. If all_chars_exist is True, all characters in the per_char array have nonzero bounding boxes. The default_char member specifies the character that will be used when an undefined or nonexistent character is printed. The default_char is a 16-bit character (not a 2-byte character). For a font using 2-byte matrix format, the default_char has byte1 in the most-significant byte and byte2 in the least significant byte. If the default_char itself specifies an undefined or nonexistent character, no printing is performed for an undefined or nonexistent character. The min_bounds and max_bounds members contain the most extreme values of each individual XCharStruct component over all elements of this array (and ignore nonexistent characters). The bounding box of the font (the smallest rectangle enclosing the shape obtained by superimposing all of the characters at the same origin [x,y]) has its upper-left coordinate at: [x + min_bounds.lbearing, y - max_bounds.ascent] Its width is: max_bounds.rbearing - min_bounds.lbearing Its height is: max_bounds.ascent + max_bounds.descent The ascent member is the logical extent of the font above the baseline that is used for determining line spacing. Specific characters may extend beyond this. The descent member is the logical extent of the font at or below the baseline that is used for determining line spacing. Specific characters may extend beyond this. If the baseline is at Y-coordinate y, the logical extent of the font is inclusive between the Y-coordinate values (y - font.ascent) and (y + font.descent - 1). Typically, the minimum interline spacing between rows of text is given by ascent + descent. For a character origin at [x,y], the bounding box of a character (that is, the smallest rectangle that encloses the character's shape) described in terms of XCharStruct components is a rectangle with its upper-left corner at: [x + lbearing, y - ascent] Its width is: rbearing - lbearing Its height is: ascent + descent The origin for the next character is defined to be: [x + width, y] The lbearing member defines the extent of the left edge of the character ink from the origin. The rbearing member defines the extent of the right edge of the character ink from the origin. The ascent member defines the extent of the top edge of the character ink from the origin. The descent member defines the extent of the bottom edge of the character ink from the origin. The width member defines the logical width of the character. Note that the baseline (the y position of the character origin) is logically viewed as being the scanline just below nondescending characters. When descent is zero, only pixels with Y-coordinates less than y are drawn, and the origin is logically viewed as being coincident with the left edge of a nonkerned character. When lbearing is zero, no pixels with X-coordinate less than x are drawn. Any of the XCharStruct metric members could be negative. If the width is negative, the next character will be placed to the left of the current origin. The X protocol does not define the interpretation of the attributes member in the XCharStruct structure. A nonexistent character is represented with all members of its XCharStruct set to zero. A font is not guaranteed to have any properties. The interpretation of the property value (for example, long or unsigned long) must be derived from a priori knowledge of the property. A basic set of font properties is specified in the X Consortium standard X Logical Font Description Conventions. Loading and Freeing Fonts Xlib provides functions that you can use to load fonts, get font information, unload fonts, and free font information. Fontsgetting information Fontsunloading Fontsfreeing font information A few font functions use a GContext resource ID or a font ID interchangeably. To load a given font, use XLoadFont. XLoadFont Font XLoadFont Display *display char *name display Specifies the connection to the X server. name Specifies the name of the font, which is a null-terminated string. The XLoadFont function loads the specified font and returns its associated font ID. If the font name is not in the Host Portable Character Encoding, the result is implementation-dependent. Use of uppercase or lowercase does not matter. When the characters ``?'' and ``*'' are used in a font name, a pattern match is performed and any matching font is used. In the pattern, the ``?'' character will match any single character, and the ``*'' character will match any number of characters. A structured format for font names is specified in the X Consortium standard X Logical Font Description Conventions. If XLoadFont was unsuccessful at loading the specified font, a BadName error results. Fonts are not associated with a particular screen and can be stored as a component of any GC. When the font is no longer needed, call XUnloadFont. XLoadFont can generate BadAlloc and BadName errors. To return information about an available font, use XQueryFont. XQueryFont XFontStruct *XQueryFont Display *display XID font_ID display Specifies the connection to the X server. font_ID Specifies the font ID or the GContext ID. The XQueryFont function returns a pointer to the XFontStruct structure, which contains information associated with the font. You can query a font or the font stored in a GC. The font ID stored in the XFontStruct structure will be the GContext ID, and you need to be careful when using this ID in other functions (see XGContextFromGC). If the font does not exist, XQueryFont returns NULL. To free this data, use XFreeFontInfo. To perform a XLoadFont and XQueryFont in a single operation, use XLoadQueryFont. XLoadQueryFont XFontStruct *XLoadQueryFont Display *display char *name display Specifies the connection to the X server. name Specifies the name of the font, which is a null-terminated string. The XLoadQueryFont function provides the most common way for accessing a font. XLoadQueryFont both opens (loads) the specified font and returns a pointer to the appropriate XFontStruct structure. If the font name is not in the Host Portable Character Encoding, the result is implementation-dependent. If the font does not exist, XLoadQueryFont returns NULL. XLoadQueryFont can generate a BadAlloc error. To unload the font and free the storage used by the font structure that was allocated by XQueryFont or XLoadQueryFont, use XFreeFont. XFreeFont XFreeFont Display *display XFontStruct *font_struct display Specifies the connection to the X server. font_struct Specifies the storage associated with the font. The XFreeFont function deletes the association between the font resource ID and the specified font and frees the XFontStruct structure. The font itself will be freed when no other resource references it. The data and the font should not be referenced again. XFreeFont can generate a BadFont error. To return a given font property, use XGetFontProperty. XGetFontProperty Bool XGetFontProperty XFontStruct *font_struct Atom atom unsignedlong *value_return font_struct Specifies the storage associated with the font. atom Specifies the atom for the property name you want returned. value_return Returns the value of the font property. Given the atom for that property, the XGetFontProperty function returns the value of the specified font property. XGetFontProperty also returns False if the property was not defined or True if it was defined. A set of predefined atoms exists for font properties, which can be found in <X11/Xatom.h>. X11/Xatom.h Files<X11/Xatom.h> Headers<X11/Xatom.h> This set contains the standard properties associated with a font. Although it is not guaranteed, it is likely that the predefined font properties will be present. To unload a font that was loaded by XLoadFont, use XUnloadFont. XUnloadFont XUnloadFont Display *display Font font display Specifies the connection to the X server. font Specifies the font. The XUnloadFont function deletes the association between the font resource ID and the specified font. The font itself will be freed when no other resource references it. The font should not be referenced again. XUnloadFont can generate a BadFont error. Obtaining and Freeing Font Names and Information You obtain font names and information by matching a wildcard specification when querying a font type for a list of available sizes and so on. To return a list of the available font names, use XListFonts. XListFonts char **XListFonts Display *display char *pattern int maxnames int *actual_count_return display Specifies the connection to the X server. pattern Specifies the null-terminated pattern string that can contain wildcard characters. maxnames Specifies the maximum number of names to be returned. actual_count_return Returns the actual number of font names. The XListFonts function returns an array of available font names (as controlled by the font search path; see XSetFontPath) that match the string you passed to the pattern argument. The pattern string can contain any characters, but each asterisk (*) is a wildcard for any number of characters, and each question mark (?) is a wildcard for a single character. If the pattern string is not in the Host Portable Character Encoding, the result is implementation-dependent. Use of uppercase or lowercase does not matter. Each returned string is null-terminated. If the data returned by the server is in the Latin Portable Character Encoding, then the returned strings are in the Host Portable Character Encoding. Otherwise, the result is implementation-dependent. If there are no matching font names, XListFonts returns NULL. The client should call XFreeFontNames when finished with the result to free the memory. To free a font name array, use XFreeFontNames. XFreeFontNames XFreeFontNames char *list[] list Specifies the array of strings you want to free. The XFreeFontNames function frees the array and strings returned by XListFonts or XListFontsWithInfo. To obtain the names and information about available fonts, use XListFontsWithInfo. XListFontsWithInfo char **XListFontsWithInfo Display *display char *pattern int maxnames int *count_return XFontStruct **info_return display Specifies the connection to the X server. pattern Specifies the null-terminated pattern string that can contain wildcard characters. maxnames Specifies the maximum number of names to be returned. count_return Returns the actual number of matched font names. info_return Returns the font information. The XListFontsWithInfo function returns a list of font names that match the specified pattern and their associated font information. The list of names is limited to size specified by maxnames. The information returned for each font is identical to what XLoadQueryFont would return except that the per-character metrics are not returned. The pattern string can contain any characters, but each asterisk (*) is a wildcard for any number of characters, and each question mark (?) is a wildcard for a single character. If the pattern string is not in the Host Portable Character Encoding, the result is implementation-dependent. Use of uppercase or lowercase does not matter. Each returned string is null-terminated. If the data returned by the server is in the Latin Portable Character Encoding, then the returned strings are in the Host Portable Character Encoding. Otherwise, the result is implementation-dependent. If there are no matching font names, XListFontsWithInfo returns NULL. To free only the allocated name array, the client should call XFreeFontNames. To free both the name array and the font information array or to free just the font information array, the client should call XFreeFontInfo. To free font structures and font names, use XFreeFontInfo. XFreeFontInfo XFreeFontInfo char **names XFontStruct *free_info int actual_count names Specifies the list of font names. free_info Specifies the font information. actual_count Specifies the actual number of font names. The XFreeFontInfo function frees a font structure or an array of font structures and optionally an array of font names. If NULL is passed for names, no font names are freed. If a font structure for an open font (returned by XLoadQueryFont) is passed, the structure is freed, but the font is not closed; use XUnloadFont to close the font. Computing Character String Sizes Xlib provides functions that you can use to compute the width, the logical extents, and the server information about 8-bit and 2-byte text strings. XTextWidth XTextWidth16 The width is computed by adding the character widths of all the characters. It does not matter if the font is an 8-bit or 2-byte font. These functions return the sum of the character metrics in pixels. To determine the width of an 8-bit character string, use XTextWidth. XTextWidth int XTextWidth XFontStruct *font_struct char *string int count font_struct Specifies the font used for the width computation. string Specifies the character string. count Specifies the character count in the specified string. To determine the width of a 2-byte character string, use XTextWidth16. XTextWidth16 int XTextWidth16 XFontStruct *font_struct XChar2b *string int count font_struct Specifies the font used for the width computation. string Specifies the character string. count Specifies the character count in the specified string. Computing Logical Extents To compute the bounding box of an 8-bit character string in a given font, use XTextExtents. XTextExtents XTextExtents XFontStruct *font_struct char *string int nchars int *direction_return int*font_ascent_return, *font_descent_return XCharStruct *overall_return font_struct Specifies the XFontStruct structure. string Specifies the character string. nchars Specifies the number of characters in the character string. direction_return Returns the value of the direction hint (FontLeftToRight or FontRightToLeft). font_ascent_return Returns the font ascent. font_descent_return Returns the font descent. overall_return Returns the overall size in the specified XCharStruct structure. To compute the bounding box of a 2-byte character string in a given font, use XTextExtents16. XTextExtents16 XTextExtents16 XFontStruct *font_struct XChar2b *string int nchars int *direction_return int*font_ascent_return, *font_descent_return XCharStruct *overall_return font_struct Specifies the XFontStruct structure. string Specifies the character string. nchars Specifies the number of characters in the character string. direction_return Returns the value of the direction hint (FontLeftToRight or FontRightToLeft). font_ascent_return Returns the font ascent. font_descent_return Returns the font descent. overall_return Returns the overall size in the specified XCharStruct structure. The XTextExtents and XTextExtents16 functions perform the size computation locally and, thereby, avoid the round-trip overhead of XQueryTextExtents and XQueryTextExtents16. Both functions return an XCharStruct structure, whose members are set to the values as follows. The ascent member is set to the maximum of the ascent metrics of all characters in the string. The descent member is set to the maximum of the descent metrics. The width member is set to the sum of the character-width metrics of all characters in the string. For each character in the string, let W be the sum of the character-width metrics of all characters preceding it in the string. Let L be the left-side-bearing metric of the character plus W. Let R be the right-side-bearing metric of the character plus W. The lbearing member is set to the minimum L of all characters in the string. The rbearing member is set to the maximum R. For fonts defined with linear indexing rather than 2-byte matrix indexing, each XChar2b structure is interpreted as a 16-bit number with byte1 as the most significant byte. If the font has no defined default character, undefined characters in the string are taken to have all zero metrics. Querying Character String Sizes To query the server for the bounding box of an 8-bit character string in a given font, use XQueryTextExtents. XQueryTextExtents XQueryTextExtents Display *display XID font_ID char *string int nchars int *direction_return int*font_ascent_return, *font_descent_return XCharStruct *overall_return display Specifies the connection to the X server. font_ID Specifies either the font ID or the GContext ID that contains the font. string Specifies the character string. nchars Specifies the number of characters in the character string. direction_return Returns the value of the direction hint (FontLeftToRight or FontRightToLeft). font_ascent_return Returns the font ascent. font_descent_return Returns the font descent. overall_return Returns the overall size in the specified XCharStruct structure. To query the server for the bounding box of a 2-byte character string in a given font, use XQueryTextExtents16. XQueryTextExtents16 XQueryTextExtents16 Display *display XID font_ID XChar2b *string int nchars int *direction_return int*font_ascent_return, *font_descent_return XCharStruct *overall_return display Specifies the connection to the X server. font_ID Specifies either the font ID or the GContext ID that contains the font. string Specifies the character string. nchars Specifies the number of characters in the character string. direction_return Returns the value of the direction hint (FontLeftToRight or FontRightToLeft). font_ascent_return Returns the font ascent. font_descent_return Returns the font descent. overall_return Returns the overall size in the specified XCharStruct structure. The XQueryTextExtents and XQueryTextExtents16 functions return the bounding box of the specified 8-bit and 16-bit character string in the specified font or the font contained in the specified GC. These functions query the X server and, therefore, suffer the round-trip overhead that is avoided by XTextExtents and XTextExtents16. Both functions return a XCharStruct structure, whose members are set to the values as follows. The ascent member is set to the maximum of the ascent metrics of all characters in the string. The descent member is set to the maximum of the descent metrics. The width member is set to the sum of the character-width metrics of all characters in the string. For each character in the string, let W be the sum of the character-width metrics of all characters preceding it in the string. Let L be the left-side-bearing metric of the character plus W. Let R be the right-side-bearing metric of the character plus W. The lbearing member is set to the minimum L of all characters in the string. The rbearing member is set to the maximum R. For fonts defined with linear indexing rather than 2-byte matrix indexing, each XChar2b structure is interpreted as a 16-bit number with byte1 as the most significant byte. If the font has no defined default character, undefined characters in the string are taken to have all zero metrics. Characters with all zero metrics are ignored. If the font has no defined default_char, the undefined characters in the string are also ignored. XQueryTextExtents and XQueryTextExtents16 can generate BadFont and BadGC errors. Drawing Text This section discusses how to draw: Complex text Text characters Image text characters The fundamental text functions XDrawText and XDrawText16 use the following structures: XTextItem typedef struct { char *chars; /* pointer to string */ int nchars; /* number of characters */ int delta; /* delta between strings */ Font font; /* Font to print it in, None don't change */ } XTextItem; XTextItem16 typedef struct { XChar2b *chars; /* pointer to two-byte characters */ int nchars; /* number of characters */ int delta; /* delta between strings */ Font font; /* font to print it in, None don't change */ } XTextItem16; If the font member is not None, the font is changed before printing and also is stored in the GC. If an error was generated during text drawing, the previous items may have been drawn. The baseline of the characters are drawn starting at the x and y coordinates that you pass in the text drawing functions. For example, consider the background rectangle drawn by XDrawImageString. If you want the upper-left corner of the background rectangle to be at pixel coordinate (x,y), pass the (x,y + ascent) as the baseline origin coordinates to the text functions. The ascent is the font ascent, as given in the XFontStruct structure. If you want the lower-left corner of the background rectangle to be at pixel coordinate (x,y), pass the (x,y - descent + 1) as the baseline origin coordinates to the text functions. The descent is the font descent, as given in the XFontStruct structure. Drawing Complex Text Textdrawing Drawingtext items To draw 8-bit characters in a given drawable, use XDrawText. XDrawText XDrawText Display *display Drawable d GC gc intx, y XTextItem *items int nitems display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and define the origin of the first character x y Specify the x and y coordinates(Xy. items Specifies an array of text items. nitems Specifies the number of text items in the array. To draw 2-byte characters in a given drawable, use XDrawText16. XDrawText16 XDrawText16 Display *display Drawable d GC gc intx, y XTextItem16 *items int nitems display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and define the origin of the first character x y Specify the x and y coordinates(Xy. items Specifies an array of text items. nitems Specifies the number of text items in the array. The XDrawText16 function is similar to XDrawText except that it uses 2-byte or 16-bit characters. Both functions allow complex spacing and font shifts between counted strings. Each text item is processed in turn. A font member other than None in an item causes the font to be stored in the GC and used for subsequent text. A text element delta specifies an additional change in the position along the x axis before the string is drawn. The delta is always added to the character origin and is not dependent on any characteristics of the font. Each character image, as defined by the font in the GC, is treated as an additional mask for a fill operation on the drawable. The drawable is modified only where the font character has a bit set to 1. If a text item generates a BadFont error, the previous text items may have been drawn. For fonts defined with linear indexing rather than 2-byte matrix indexing, each XChar2b structure is interpreted as a 16-bit number with byte1 as the most significant byte. Both functions use these GC components: function, plane-mask, fill-style, font, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. They also use these GC mode-dependent components: foreground, background, tile, stipple, tile-stipple-x-origin, and tile-stipple-y-origin. XDrawText and XDrawText16 can generate BadDrawable, BadFont, BadGC, and BadMatch errors. Drawing Text Characters Stringsdrawing Drawingstrings To draw 8-bit characters in a given drawable, use XDrawString. XDrawString XDrawString Display *display Drawable d GC gc int x int y char *string int length display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and define the origin of the first character x y Specify the x and y coordinates(Xy. string Specifies the character string. length Specifies the number of characters in the string argument. To draw 2-byte characters in a given drawable, use XDrawString16. XDrawString16 XDrawString16 Display *display Drawable d GC gc intx, y XChar2b *string int length display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and define the origin of the first character x y Specify the x and y coordinates(Xy. string Specifies the character string. length Specifies the number of characters in the string argument. Each character image, as defined by the font in the GC, is treated as an additional mask for a fill operation on the drawable. The drawable is modified only where the font character has a bit set to 1. For fonts defined with 2-byte matrix indexing and used with XDrawString16, each byte is used as a byte2 with a byte1 of zero. Both functions use these GC components: function, plane-mask, fill-style, font, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. They also use these GC mode-dependent components: foreground, background, tile, stipple, tile-stipple-x-origin, and tile-stipple-y-origin. XDrawString and XDrawString16 can generate BadDrawable, BadGC, and BadMatch errors. Drawing Image Text Characters Image textdrawing Drawingimage text Some applications, in particular terminal emulators, need to print image text in which both the foreground and background bits of each character are painted. This prevents annoying flicker on many displays. XDrawImageString XDrawImageString16 To draw 8-bit image text characters in a given drawable, use XDrawImageString. XDrawImageString XDrawImageString Display *display Drawable d GC gc intx, y char *string int length display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and define the origin of the first character x y Specify the x and y coordinates(Xy. string Specifies the character string. length Specifies the number of characters in the string argument. To draw 2-byte image text characters in a given drawable, use XDrawImageString16. XDrawImageString16 XDrawImageString16 Display *display Drawable d GC gc intx, y XChar2b *string int length display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. and define the origin of the first character x y Specify the x and y coordinates(Xy. string Specifies the character string. length Specifies the number of characters in the string argument. The XDrawImageString16 function is similar to XDrawImageString except that it uses 2-byte or 16-bit characters. Both functions also use both the foreground and background pixels of the GC in the destination. The effect is first to fill a destination rectangle with the background pixel defined in the GC and then to paint the text with the foreground pixel. The upper-left corner of the filled rectangle is at: [x, y - font-ascent] The width is: overall-width The height is: font-ascent + font-descent The overall-width, font-ascent, and font-descent are as would be returned by XQueryTextExtents using gc and string. The function and fill-style defined in the GC are ignored for these functions. The effective function is GXcopy, and the effective fill-style is FillSolid. For fonts defined with 2-byte matrix indexing and used with XDrawImageString, each byte is used as a byte2 with a byte1 of zero. Both functions use these GC components: plane-mask, foreground, background, font, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. XDrawImageString and XDrawImageString16 can generate BadDrawable, BadGC, and BadMatch errors. Transferring Images between Client and Server Xlib provides functions that you can use to transfer images between a client and the server. Because the server may require diverse data formats, Xlib provides an image object that fully describes the data in memory and that provides for basic operations on that data. You should reference the data through the image object rather than referencing the data directly. However, some implementations of the Xlib library may efficiently deal with frequently used data formats by replacing functions in the procedure vector with special case functions. Supported operations include destroying the image, getting a pixel, storing a pixel, extracting a subimage of an image, and adding a constant to an image (see section 16.8). All the image manipulation functions discussed in this section make use of the XImage structure, which describes an image as it exists in the client's memory. XImage typedef struct _XImage { int width, height; /* size of image */ int xoffset; /* number of pixels offset in X direction */ int format; /* XYBitmap, XYPixmap, ZPixmap */ char *data; /* pointer to image data */ int byte_order; /* data byte order, LSBFirst, MSBFirst */ int bitmap_unit; /* quant. of scanline 8, 16, 32 */ int bitmap_bit_order; /* LSBFirst, MSBFirst */ int bitmap_pad; /* 8, 16, 32 either XY or ZPixmap */ int depth; /* depth of image */ int bytes_per_line; /* accelerator to next scanline */ int bits_per_pixel; /* bits per pixel (ZPixmap) */ unsigned long red_mask; /* bits in z arrangement */ unsigned long green_mask; unsigned long blue_mask; XPointer obdata; /* hook for the object routines to hang on */ struct funcs { /* image manipulation routines */ struct _XImage *(*create_image)(); int (*destroy_image)(); unsigned long (*get_pixel)(); int (*put_pixel)(); struct _XImage *(*sub_image)(); int (*add_pixel)(); } f; } XImage; To initialize the image manipulation routines of an image structure, use XInitImage. XInitImage Status XInitImage XImage *image ximage Specifies the image. The XInitImage function initializes the internal image manipulation routines of an image structure, based on the values of the various structure members. All fields other than the manipulation routines must already be initialized. If the bytes_per_line member is zero, XInitImage will assume the image data is contiguous in memory and set the bytes_per_line member to an appropriate value based on the other members; otherwise, the value of bytes_per_line is not changed. All of the manipulation routines are initialized to functions that other Xlib image manipulation functions need to operate on the type of image specified by the rest of the structure. This function must be called for any image constructed by the client before passing it to any other Xlib function. Image structures created or returned by Xlib do not need to be initialized in this fashion. This function returns a nonzero status if initialization of the structure is successful. It returns zero if it detected some error or inconsistency in the structure, in which case the image is not changed. To combine an image with a rectangle of a drawable on the display, use XPutImage. XPutImage XPutImage Display *display Drawable d GC gc XImage *image intsrc_x, src_y intdest_x, dest_y unsignedintwidth, height display Specifies the connection to the X server. d Specifies the drawable. gc Specifies the GC. image Specifies the image you want combined with the rectangle. src_x Specifies the offset in X from the left edge of the image defined by the XImage structure. src_y Specifies the offset in Y from the top edge of the image defined by the XImage structure. and are the coordinates of the subimage dest_x dest_y Specify the x and y coordinates(Dx. width height Specify the width and height(Wh. The XPutImage function combines an image with a rectangle of the specified drawable. The section of the image defined by the src_x, src_y, width, and height arguments is drawn on the specified part of the drawable. If XYBitmap format is used, the depth of the image must be one, or a BadMatch error results. The foreground pixel in the GC defines the source for the one bits in the image, and the background pixel defines the source for the zero bits. For XYPixmap and ZPixmap, the depth of the image must match the depth of the drawable, or a BadMatch error results. If the characteristics of the image (for example, byte_order and bitmap_unit) differ from what the server requires, XPutImage automatically makes the appropriate conversions. This function uses these GC components: function, plane-mask, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. It also uses these GC mode-dependent components: foreground and background. XPutImage can generate BadDrawable, BadGC, BadMatch, and BadValue errors. To return the contents of a rectangle in a given drawable on the display, use XGetImage. This function specifically supports rudimentary screen dumps. XGetImage XImage *XGetImage Display *display Drawable d intx, y unsignedintwidth, height unsignedlong plane_mask int format display Specifies the connection to the X server. d Specifies the drawable. and define the upper-left corner of the rectangle x y Specify the x and y coordinates(Xy. width height Specify the width and height(Wh. plane_mask Specifies the plane mask. format Specifies the format for the image. You can pass XYPixmap or ZPixmap. The XGetImage function returns a pointer to an XImage structure. This structure provides you with the contents of the specified rectangle of the drawable in the format you specify. If the format argument is XYPixmap, the image contains only the bit planes you passed to the plane_mask argument. If the plane_mask argument only requests a subset of the planes of the display, the depth of the returned image will be the number of planes requested. If the format argument is ZPixmap, XGetImage 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. XGetImage returns the depth of the image to the depth member of the XImage structure. The depth of the image is as specified when the drawable was created, except when getting a subset of the planes in XYPixmap format, when the depth is given by the number of bits set to 1 in plane_mask. 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. Note that the borders of the window can be included and read with this request. If the window has backing-store, 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. The pointer cursor image is not included in the returned contents. If a problem occurs, XGetImage returns NULL. XGetImage can generate BadDrawable, BadMatch, and BadValue errors. To copy the contents of a rectangle on the display to a location within a preexisting image structure, use XGetSubImage. XGetSubImage XImage *XGetSubImage Display *display Drawable d intx, y unsignedintwidth, height unsignedlong plane_mask int format XImage *dest_image intdest_x, dest_y display Specifies the connection to the X server. d Specifies the drawable. and define the upper-left corner of the rectangle x y Specify the x and y coordinates(Xy. width height Specify the width and height(Wh. 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. specify its upper-left corner, and determine where the subimage \ is placed in the destination image dest_x dest_y Specify the x and y coordinates(Dx. 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.