PHP Velho Oeste 2024

CairoContext::rectangle

cairo_rectangle

(PECL cairo >= 0.1.0)

CairoContext::rectangle -- cairo_rectangleThe rectangle purpose

Descrição

Estilo orientado à objeto (method):

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

Estilo procedural:

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

Description here.

Aviso

Esta função não está documentada; somente a lista de argumentos está disponível.

Parâmetros

context

Description...

x

Description...

y

Description...

width

Description...

height

Description...

Valor Retornado

Description...

Exemplos

Exemplo #1 Estilo orientado à objeto

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

O exemplo acima irá imprimir algo similar à:

...

Exemplo #2 Estilo procedural

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

O exemplo acima irá imprimir algo similar à:

...

Veja Também

  • Classname::Method()

add a note add a note

User Contributed Notes

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