update : 2015.11.03
php.shukuma.com검색:
|
CairoContext::fillPreservecairo_fill_preserve(PECL cairo >= 0.1.0) CairoContext::fillPreserve -- cairo_fill_preserve — Fills and preserve the current path 설명객체 기반 형식 (method):
public void CairoContext::fillPreserve
( void
)
절차식 형식: 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. 반환값값을 반환하지 않습니다. 예제
Example #1 객체 기반 형식
<?php 위 예제의 출력 예시: ...
Example #2 절차식 형식
<?php 위 예제의 출력 예시: ... 참고
|