GoLang CairoImageSurface::getWidth

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



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

PHP CairoImageSurface::getWidth

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

CairoImageSurface::getWidth

(PECL cairo >= 0.1.0)

CairoImageSurface::getWidthRetrieves the width of the CairoImageSurface

Description

public int CairoImageSurface::getWidth ( void )

Gets the width of the CairoImageSurface

Parameters

This function has no parameters.

Return Values

Returns the width of the CairoImageSurface object

Examples

Example #1 CairoImageSurface::getWidth() example

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

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

?>

The above example will output something similar to:

int(80)

See Also