Package: cairo

Function cairo-text-path

Lambda List

cairo-text-path (cr uft8)

Arguments

cr -- a cairo-t context
utf8 -- a string of text encoded in UTF-8, or nil

Details

Adds closed paths for text to the current path. The generated path if filled, achieves an effect similar to that of the cairo-show-text function.

Text conversion and positioning is done similar to the cairo-show-text function.

Like the cairo-show-text function, after this call the current point is moved to the origin of where the next glyph would be placed in this same progression. That is, the current point will be at the origin of the final glyph offset by its advance values. This allows for chaining multiple calls to to the cairo-text-path function without having to set current point in between.

Note

The cairo-text-path 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. See the cairo-glyph-path function for the "real" text path API in Cairo.
 

See also

2021-12-12