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

반환값

값을 반환하지 않습니다.

예제

Example #1 객체 기반 형식

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

위 예제의 출력 예시:

...

Example #2 절차식 형식

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

위 예제의 출력 예시:

...

add a note add a note

User Contributed Notes

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