CairoImageSurface::createFromPng

(PECL cairo >= 0.1.0)
Creates a new CairoImageSurface form a png image file
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

Returns:

CairoImageSurface object

Examples:
CairoImageSurface::createFromPng() example
<?php

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

?>

The above example will output something similar to:

...
See also:

CairoImageSurface::__construct() -

doc_php
2016-02-24 15:59:15
Comments
Leave a Comment

Please login to continue.