CairoContext::fillPreserve

cairo_fill_preserve

(PECL cairo >= 0.1.0)

CairoContext::fillPreserve -- cairo_fill_preserveFills and preserve the current path

Опис

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

public void CairoContext::fillPreserve ( void )

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

void cairo_fill_preserve ( CairoContext $context )

A drawing operator that fills the current path according to the current CairoFillRule, (each sub-path is implicitly closed before being filled). Unlike CairoContext::fill(), CairoContext::fillPreserve() (Procedural cairo_fill(), cairo_fill_preserve(), respectively) preserves the path within the Context.

Параметри

context

A valid CairoContext object created with CairoContext::__construct() or cairo_create()

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

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

Приклади

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

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

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

...

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

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

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

...

Прогляньте Також

add a note add a note

User Contributed Notes

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