PHP Velho Oeste 2024

CairoImageSurface::getWidth

(PECL cairo >= 0.1.0)

CairoImageSurface::getWidthRetrieves the width of the CairoImageSurface

Descrição

public CairoImageSurface::getWidth ( void ) : int

Gets the width of the CairoImageSurface

Parâmetros

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

Valor Retornado

Returns the width of the CairoImageSurface object

Exemplos

Exemplo #1 CairoImageSurface::getWidth() example

<?php
// creates a new image surface
$surface = new CairoImageSurface(CairoFormat::ARGB328050);

//gets the width
var_dump($surface->getWidth());

?>

O exemplo acima irá imprimir algo similar à:

int(80)

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top