Cairo::availableSurfaces

cairo_available_surfaces

(PECL cairo >= 0.1.0)

Cairo::availableSurfaces -- cairo_available_surfacesRetrieves all available surfaces

설명

객체 기반 형식 (method):

public static array Cairo::availableSurfaces ( void )

절차식 형식:

array cairo_available_surfaces ( void )

Returns an array with the available surface backends

인수

이 함수는 인수가 없습니다.

반환값

A list-type array with all available surface backends.

예제

Example #1 객체 기반 형식

<?php

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

?>

위 예제의 출력 예시:

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"
}

Example #2 절차식 형식

<?php

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

?>

위 예제의 출력 예시:

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"
}

참고

add a note add a note

User Contributed Notes

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