(PECL cairo >= 0.1.0)
CairoContext::fontExtents -- cairo_font_extents — Get the font extents
Objektorientierter Stil (method):
Prozeduraler Stil:
Gets the font extents for the currently selected font.
contextDescription...
An array containing the font extents for the current font.
Beispiel #1 Objektorientierter Stil
<?php
$sur = new CairoImageSurface(CairoFormat::ARGB32, 50, 50);
$con = new CairoContext($sur);
var_dump($con->fontExtents());
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(5) {
["ascent"]=>
float(10)
["descent"]=>
float(3)
["height"]=>
float(13.3125)
["max_x_advance"]=>
float(26.65625)
["max_y_advance"]=>
float(0)
}
Beispiel #2 Prozeduraler Stil
<?php
$sur = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 50, 50);
$con = cairo_create($sur);
var_dump(cairo_font_extents($con));
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(5) {
["ascent"]=>
float(10)
["descent"]=>
float(3)
["height"]=>
float(13.3125)
["max_x_advance"]=>
float(26.65625)
["max_y_advance"]=>
float(0)
}