(PECL cairo >= 0.1.0)
CairoImageSurface::getFormat — Get the image format
Retrieves the image format, as one of the CairoFormat defined
Diese Funktion hat keine Parameter.
One of the CairoFormat enums
Beispiel #1 CairoImageSurface::getFormat() example
<?php
$surface = new CairoImageSurface(CairoFormat::ARGB32, 50, 50);
var_dump($surface->getFormat()); // 0
$surface2 = new CairoImageSurface(CairoFormat::A8, 50, 50);
var_dump($surface2->getFormat()); // 2
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
int(0) int(2)