CairoImageSurface::getWidth

(PECL cairo >= 0.1.0)

CairoImageSurface::getWidthRetrieves the width of the CairoImageSurface

說明

public int CairoImageSurface::getWidth ( void )

Gets the width of the CairoImageSurface

參數

此函式沒有參數。

回傳值

Returns the width of the CairoImageSurface object

範例

Example #1 CairoImageSurface::getWidth() example

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

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

?>

上例的輸出類似於:

int(80)

參見

add a note add a note

User Contributed Notes

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