CairoPdfSurface::__construct

(PECL cairo >= 0.1.0)

CairoPdfSurface::__constructThe __construct purpose

설명

public CairoPdfSurface::__construct ( string $file , float $width , float $height )

The method description goes here.

Warning

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

인수

file

Description...

width

Description...

height

Description...

반환값

Description...

예제

Example #1 CairoPdfSurface::__construct() example

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

위 예제의 출력 예시:

...

참고

  • Classname::Method()

add a note add a note

User Contributed Notes 1 note

up
0
chickenSandwich
11 years ago
public CairoPdfSurface::__construct ( string $file , float $width , float $height )

Parameters:

$file
  The file path to the pdf document.
 
$width
  The width in pixels of the pdf document.

$height
  The height in pixels of the pdf document.

I would have updated the actual documentation if it wasn't such a pain in the butt.
To Top