CairoImageSurface::getHeight

(PECL cairo >= 0.1.0)

CairoImageSurface::getHeightRetrieves the height of the CairoImageSurface

Opis

public CairoImageSurface::getHeight ( void ) : int

This methods returns the CairoImageSurface height.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

CairoImageSurface object height

Przykłady

Przykład #1 CairoImageSurface::getHeight() example

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

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

?>

Powyższy przykład wyświetli coś podobnego do:

int(50)

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top