CairoImageSurface::getHeight

(PECL cairo >= 0.1.0)

CairoImageSurface::getHeightRetrieves the height of the CairoImageSurface

Açıklama

public CairoImageSurface::getHeight ( void ) : int

This methods returns the CairoImageSurface height.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

CairoImageSurface object height

Örnekler

Örnek 1 CairoImageSurface::getHeight() example

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

//gets the height
var_dump($surface->getHeight());

?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

int(50)

Ayrıca Bakınız