Description Usage Arguments Details Author(s)
Note: The cairoSelectFontFace
function call is part of what
the cairo designers call the "toy" text API. It is convenient for
short demos and simple programs, but it is not expected to be
adequate for serious text-using applications.
1 | cairoSelectFontFace(cr, family, slant, weight)
|
|
[ |
|
[char] a font family name, encoded in UTF-8 |
|
[ |
|
[ |
Selects a family and style of font from a simplified description as a family name, slant and weight. Cairo provides no operation to list available family names on the system (this is a "toy", remember), but the standard CSS2 generic family names, ("serif", "sans-serif", "cursive", "fantasy", "monospace"), are likely to work as expected.
For "real" font selection, see the font-backend-specific
font_face_create functions for the font backend you are using. (For
example, if you are using the freetype-based cairo-ft font backend,
see cairoFtFontFaceCreateForFtFace()
or
cairoFtFontFaceCreateForPattern()
.) The resulting font face
could then be used with cairoScaledFontCreate
and
cairoSetScaledFont
.
Similarly, when using the "real" font support, you can call directly into the underlying font system, (such as fontconfig or freetype), for operations such as listing available fonts, etc.
It is expected that most applications will need to use a more comprehensive font handling and text layout library, (for example, pango), in conjunction with cairo.
If text is drawn without a call to cairoSelectFontFace
, (nor
cairoSetFontFace
nor cairoSetScaledFont
), the default
family is platform-specific, but is essentially "sans-serif".
Default slant is CAIRO_FONT_SLANT_NORMAL
, and default weight is
CAIRO_FONT_WEIGHT_NORMAL
.
This function is equivalent to a call to cairoToyFontFaceCreate
followed by cairoSetFontFace
.
Derived by RGtkGen from GTK+ documentation
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.