CairoContext::glyphPath

cairo_glyph_path

(PECL cairo >= 0.1.0)

CairoContext::glyphPath -- cairo_glyph_pathThe glyphPath purpose

Опис

Об'єктно-орієнтований стиль

public void CairoContext::glyphPath ( array $glyphs )

Процедурний стиль

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().

Параметри

context

A CairoContext object

glyphs

Array of glyphs

Значення, що повертаються

Не повертає значень.

Приклади

Приклад #1 Об'єктно-орієнтований стиль

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

Наведений вище приклад виведе щось подібне до:

...

Приклад #2 Процедурний стиль

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

Наведений вище приклад виведе щось подібне до:

...

add a note add a note

User Contributed Notes

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