cairo_text_extents_t

The cairo_text_extents_t structure stores the extents of a single glyph or a string of glyphs in user-space coordinates. Because text extents are in user-space coordinates, they are mostly, but not entirely, independent of the current transformation matrix. If you call cairo_scale(cr, 2.0, 2.0), text will be drawn twice as big, but the reported text extents will not be doubled. They will change slightly due to hinting (so you can't assume that metrics are independent of the transformation matrix), but otherwise will remain unchanged. double x_bearing; the horizontal distance from the origin to the

Members

Variables

height
double height;
Undocumented in source.
width
double width;
Undocumented in source.
xAdvance
double xAdvance;
Undocumented in source.
xBearing
double xBearing;
Undocumented in source.
yAdvance
double yAdvance;
Undocumented in source.
yBearing
double yBearing;
Undocumented in source.

Meta