CairoImageSurface
PHP Manual

CairoImageSurface::getWidth

(PECL cairo >= 0.1.0)

CairoImageSurface::getWidthRetrieves the width of the CairoImageSurface

Descrizione

public int CairoImageSurface::getWidth ( void )

Gets the width of the CairoImageSurface

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the width of the CairoImageSurface object

Esempi

Example #1 CairoImageSurface::getWidth() example

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

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

?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

int(80)

Vedere anche:


CairoImageSurface
PHP Manual