(PECL cairo >= 0.1.0)
CairoImageSurface::getWidth — Retrieves the width of the CairoImageSurface
Bu işlevin değiştirgesi yoktur.
Returns the width of the CairoImageSurface object
Örnek 1 CairoImageSurface::getWidth() example
<?php
// creates a new image surface
$surface = new CairoImageSurface(CairoFormat::ARGB32, 80, 50);
//gets the width
var_dump($surface->getWidth());
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
int(80)