CairoImageSurface::getHeight

(PECL cairo >= 0.1.0)

CairoImageSurface::getHeightRetrieves the height of the CairoImageSurface

Описание

public CairoImageSurface::getHeight ( void ) : int

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)

Смотрите также