©
このドキュメントでは、 php中国語ネットマニュアル リリース
(PECL cairo >= 0.1.0)
CairoContext::__construct — Creates a new CairoContext
$surface
)Creates a new CairoContext object to draw
surface
A valid CairoSurface like CairoImageSurface or CairoPdfSurface
A CairoContext
Example #1 CairoContext::__construct() example
<?php
// The surface to work on
$surface = new CairoImageSurface ( CairoFormat :: ARGB32 , 50 , 50 );
// Create a new CairoContext for the CairoSurface
$context = new CairoContext ( $surface );
?>