GoLang CairoImageSurface::getHeight

request it (321)
GoLang replacement for PHP's CairoImageSurface::getHeight [edit | history]



Do you know a GoLang replacement for PHP's CairoImageSurface::getHeight? Write it!

PHP CairoImageSurface::getHeight

PHP original manual for CairoImageSurface::getHeight [ show | php.net ]

CairoImageSurface::getHeight

(PECL cairo >= 0.1.0)

CairoImageSurface::getHeightRetrieves the height of the CairoImageSurface

Description

public int CairoImageSurface::getHeight ( void )

This methods returns the CairoImageSurface height.

Parameters

This function has no parameters.

Return Values

CairoImageSurface object height

Examples

Example #1 CairoImageSurface::getHeight() example

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

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

?>

The above example will output something similar to:

int(50)

See Also