update : 2015.11.03
php.shukuma.com

검색:
 
 
Retrieves the width of the CairoImageSurface

CairoImageSurface::getWidth

(PECL cairo >= 0.1.0)

CairoImageSurface::getWidthRetrieves the width of the CairoImageSurface

설명

public int CairoImageSurface::getWidth ( void )

Gets the width of the CairoImageSurface

인수

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

반환값

Returns the width of the CairoImageSurface object

예제

Example #1 CairoImageSurface::getWidth() example

<?php
// creates a new image surface
$surface = new CairoImageSurface(CairoFormat::ARGB328050);

//gets the width
var_dump($surface->getWidth());

?>

위 예제의 출력 예시:

int(80)

참고