(PECL cairo >= 0.1.0)
CairoContext::fill -- cairo_fill — Fills the current path
Object oriented style (method):
Procedural style:
A drawing operator that fills the current path according to the current CairoFillRule, (each sub-path is implicitly closed before being filled). After CairoContext::fill or cairo_fill(), the current path will be cleared from the CairoContext.
A valid CairoContext object created with CairoContext::__construct or cairo_create()
No value is returned.
Example #1 Object oriented style
<?php
/* ... */
?>
The above example will output something similar to:
...
Example #2 Procedural style
<?php
/* ... */
?>
The above example will output something similar to:
...