(PECL cairo >= 0.1.0)
Cairo::statusToString -- cairo_status_to_string — Retrieves the current status as string
Object oriented style (method):
Procedural style:
Retrieves the current status as a readable string
A string containing the current status of a CairoContext object
例1 Object oriented style
<?php
$surface = new CairoImageSurface(CairoFormat::ARGB32, 50, 50);
$context = new CairoContext($surface);
var_dump(Cairo::statusToString($context->status()));
?>
上の例の出力は、 たとえば以下のようになります。
string(7) "success"
例2 Procedural style
<?php
$surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 50, 50);
$context = cairo_create($surface);
var_dump(cairo_status_to_string(cairo_status($context)));
?>
上の例の出力は、 たとえば以下のようになります。
string(7) "success"