GoLang CairoImageSurface::createFromPng

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



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

PHP CairoImageSurface::createFromPng

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

CairoImageSurface::createFromPng

(PECL cairo >= 0.1.0)

CairoImageSurface::createFromPngCreates a new CairoImageSurface form a png image file

Description

public static CairoImageSurface CairoImageSurface::createFromPng ( string $file )

Creates a new CairoImageSurface form a png image file

This method should be called static

Parameters

file

Path to PNG image file

Return Values

CairoImageSurface object

Examples

Example #1 CairoImageSurface::createFromPng() example

<?php

$surface 
CairoImageSurface::createFromPng('/path/to/image/file.png');

?>

The above example will output something similar to:

...

See Also