PHP Velho Oeste 2024

CairoContext::setSourceRGB

cairo_set_source

(PECL cairo >= 0.1.0)

CairoContext::setSourceRGB -- cairo_set_sourceThe setSourceRGB purpose

Descrição

Estilo orientado à objeto (method):

public CairoContext::setSourceRGB ( float $red , float $green , float $blue ) : void

Estilo procedural:

cairo_set_source ( CairoContext $context , float $red , float $green , float $blue ) : void

Description here.

Aviso

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

Parâmetros

context

Description...

red

Description...

green

Description...

blue

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