Cairo::availableSurfaces

cairo_available_surfaces

(PECL cairo >= 0.1.0)

Cairo::availableSurfaces -- cairo_available_surfacesRetrieves all available surfaces

Descrição

Estilo orientado à objeto (method):

public static Cairo::availableSurfaces ( void ) : array

Estilo procedural:

cairo_available_surfaces ( void ) : array

Returns an array with the available surface backends

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

A list-type array with all available surface backends.

Exemplos

Exemplo #1 Estilo orientado à objeto

<?php

/* Object Oriented style */
var_dump(Cairo::availableSurfaces());

?>

O exemplo acima irá imprimir algo similar à:

array(6) {
  [0]=>
  string(5) "IMAGE"
  [1]=>
  string(3) "PNG"
  [2]=>
  string(3) "PDF"
  [3]=>
  string(2) "PS"
  [4]=>
  string(3) "SVG"
  [5]=>
  string(5) "WIN32"
}

Exemplo #2 Estilo procedural

<?php

/* Procedural style */
var_dump(cairo_available_surfaces());

?>

O exemplo acima irá imprimir algo similar à:

array(6) {
  [0]=>
  string(5) "IMAGE"
  [1]=>
  string(3) "PNG"
  [2]=>
  string(3) "PDF"
  [3]=>
  string(2) "PS"
  [4]=>
  string(3) "SVG"
  [5]=>
  string(5) "WIN32"
}

Veja Também