Name
pango.Shape -- convert text to glyphs
Synopsis
pango.Shape(text$, analysis, glyphs)
Function
Convert the characters in text$ into glyphs.

Given a segment of text and the corresponding Pango analysis structure returned from pcontext:Itemize(), convert the characters into glyphs. You may also pass in only a substring of the item from pcontext:Itemize().

It is recommended that you use pango.ShapeFull() instead, since that API allows for shaping interaction happening across text item boundaries.

Note that the extra attributes in the analyis that is returned from pcontext:Itemize() have indices that are relative to the entire paragraph, so you need to subtract the item offset from their indices before calling this function.

Inputs
text$
the text to process
analysis
Pango analysis object from pcontext:Itemize()
glyphs
Pango glyph string object in which to store results

Show TOC