downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

CairoImageSurface::getHeight> <CairoImageSurface::getData
[edit] Last updated: Fri, 24 May 2013

view this page in

CairoImageSurface::getFormat

(PECL cairo >= 0.1.0)

CairoImageSurface::getFormatGet the image format

Descrição

public int CairoImageSurface::getFormat ( void )

Retrieves the image format, as one of the CairoFormat defined

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

One of the CairoFormat enums

Exemplos

Exemplo #1 CairoImageSurface::getFormat() example

<?php

$surface 
= new CairoImageSurface(CairoFormat::ARGB325050);

var_dump($surface->getFormat()); // 0

$surface2 = new CairoImageSurface(CairoFormat::A85050);

var_dump($surface2->getFormat()); // 2

?>

O exemplo acima irá imprimir algo similar à:

int(0)
int(2)

Veja Também



add a note add a note User Contributed Notes CairoImageSurface::getFormat - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites