CairoImageSurface
PHP Manual

CairoImageSurface::createFromPng

(PECL cairo >= 0.1.0)

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

Beschreibung

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

Creates a new CairoImageSurface form a png image file

This method should be called static

Parameter-Liste

file

Path to PNG image file

Rückgabewerte

CairoImageSurface object

Beispiele

Beispiel #1 CairoImageSurface::createFromPng() example

<?php

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

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

...

Siehe auch


CairoImageSurface
PHP Manual