(PECL cairo >= 0.1.0)
CairoImageSurface::getWidth — Retrieves the width of the CairoImageSurface
Gets the width of the CairoImageSurface
Diese Funktion hat keine Parameter.
Returns the width of the CairoImageSurface object
Beispiel #1 CairoImageSurface::getWidth() example
<?php
// creates a new image surface
$surface = new CairoImageSurface(CairoFormat::ARGB32, 80, 50);
//gets the width
var_dump($surface->getWidth());
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
int(80)