CairoImageSurface::getHeight

(PECL cairo >= 0.1.0)

CairoImageSurface::getHeightRetrieves the height of the CairoImageSurface

Опис

public int CairoImageSurface::getHeight ( void )

This methods returns the CairoImageSurface height.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

CairoImageSurface object height

Приклади

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

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

//gets the height
var_dump($surface->getHeight());

?>

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

int(50)

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

add a note add a note

User Contributed Notes

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