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

Приклади

Приклад #1 CairoImageSurface::getWidth() example

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

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

?>

Наведений вище приклад виведе щось подібне до:

int(80)

Прогляньте Також

add a note add a note

User Contributed Notes

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