CairoImageSurface::getFormat
(PECL cairo >= 0.1.0)
CairoImageSurface::getFormat — Get the image format
Descrizione
public int CairoImageSurface::getFormat
( void
)
Retrieves the image format, as one of the CairoFormat defined
Elenco dei parametri
Questa funzione non contiene parametri.
Valori restituiti
One of the CairoFormat enums
Esempi
Example #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
?>
Il precedente esempio visualizzerĂ qualcosa simile a:
int(0) int(2)
Vedere anche:
- CairoImageSurface::getHeight() - Retrieves the height of the CairoImageSurface
- CairoImageSurface::getWidth() - Retrieves the width of the CairoImageSurface
There are no user contributed notes for this page.
