CairoImageSurface::getWidth

(PECL cairo >= 0.1.0)

CairoImageSurface::getWidthRetrieves the width of the CairoImageSurface

Descrierea

public CairoImageSurface::getWidth ( void ) : int

Gets the width of the CairoImageSurface

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the width of the CairoImageSurface object

Exemple

Example #1 CairoImageSurface::getWidth() example

<?php
// creates a new image surface
$surface = new CairoImageSurface(CairoFormat::ARGB328050);

//gets the width
var_dump($surface->getWidth());

?>

Exemplul de mai sus va afișa ceva similar cu:

int(80)

A se vedea și