GoLang CairoImageSurface::getFormat

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



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

PHP CairoImageSurface::getFormat

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

CairoImageSurface::getFormat

(PECL cairo >= 0.1.0)

CairoImageSurface::getFormatGet the image format

Description

public int CairoImageSurface::getFormat ( void )

Retrieves the image format, as one of the CairoFormat defined

Parameters

This function has no parameters.

Return Values

One of the CairoFormat enums

Examples

Example #1 CairoImageSurface::getFormat() example

<?php

$surface 
= new CairoImageSurface(CairoFormat::ARGB325050);

var_dump($surface->getFormat()); // 0

$surface2 = new CairoImageSurface(CairoFormat::A85050);

var_dump($surface2->getFormat()); // 2

?>

The above example will output something similar to:

int(0)
int(2)

See Also