(PECL cairo >= 0.1.0)
CairoImageSurface::getHeight — Retrieves the height of the CairoImageSurface
This methods returns the CairoImageSurface height.
Esta função não contém parâmetros.
CairoImageSurface object height
Exemplo #1 CairoImageSurface::getHeight example
<?php
// creates a new image surface
$surface = new CairoImageSurface(CairoFormat::ARGB32, 80, 50);
//gets the width
var_dump($surface->getHeight());
?>
O exemplo acima irá imprimir algo similar a:
int(50)