CairoContext::glyphPath

cairo_glyph_path

(PECL cairo >= 0.1.0)

CairoContext::glyphPath -- cairo_glyph_pathThe glyphPath purpose

Beskrivelse

Object oriented style

public void CairoContext::glyphPath ( array $glyphs )

Procedural style

void cairo_glyph_path ( CairoContext $context , array $glyphs )

Adds closed paths for the glyphs to the current path. The generated path if filled, achieves an effect similar to that of CairoContext::showGlyphs().

Parametre

context

A CairoContext object

glyphs

Array of glyphs

Returnerings Værdier

No value is returned.

Eksempler

Eksempel #1 Object oriented style

<?php
/* ... */
?>

The above example will output something similar to:

...

Eksempel #2 Procedural style

<?php
/* ... */
?>

The above example will output something similar to:

...

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top