CairoContext::rectangle

cairo_rectangle

(PECL cairo >= 0.1.0)

CairoContext::rectangle -- cairo_rectangleThe rectangle purpose

설명

객체 기반 형식 (method):

public void CairoContext::rectangle ( string $x , string $y , string $width , string $height )

절차식 형식:

void cairo_rectangle ( CairoContext $context , string $x , string $y , string $width , string $height )

Description here.

Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

인수

context

Description...

x

Description...

y

Description...

width

Description...

height

Description...

반환값

Description...

예제

Example #1 객체 기반 형식

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

위 예제의 출력 예시:

...

Example #2 절차식 형식

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

위 예제의 출력 예시:

...

참고

  • Classname::Method()

add a note add a note

User Contributed Notes

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