update : 2015.11.03
php.shukuma.com검색:
|
CairoContext::copyPathcairo_copy_path(PECL cairo >= 0.1.0) CairoContext::copyPath -- cairo_copy_path — Creates a copy of the current path 설명객체 기반 형식 (method): 절차식 형식: Creates a copy of the current path and returns it to the user as a CairoPath. See CairoPath for hints on how to iterate over the returned data structure. This function will always return a valid CairoPath object, but the result will have no data, if either of the following conditions hold:
반환값A copy of the current CairoPath in the context 예제
Example #1 객체 기반 형식
<?php 위 예제의 출력 예시: object(CairoPath)#3 (0) { }
Example #2 절차식 형식
<?php 위 예제의 출력 예시: object(CairoPath)#3 (0) { } |