CairoImageSurface::getHeight
(PECL cairo >= 0.1.0)
CairoImageSurface::getHeight — Retrieves the height of the CairoImageSurface
Descrizione
public int CairoImageSurface::getHeight
( void
)
This methods returns the CairoImageSurface height.
Elenco dei parametri
Questa funzione non contiene parametri.
Valori restituiti
CairoImageSurface object height
Esempi
Example #1 CairoImageSurface::getHeight() example
<?php
// creates a new image surface
$surface = new CairoImageSurface(CairoFormat::ARGB32, 80, 50);
//gets the height
var_dump($surface->getHeight());
?>
Il precedente esempio visualizzerĂ qualcosa simile a:
int(50)
There are no user contributed notes for this page.
