CairoContext::clip

(PECL cairo >= 0.1.0) Establishes a new clip region public void CairoContext::clip ( void ) Object oriented style (method): Procedural style: void cairo_clip ( CairoContext $context ) Establishes a new clip region by intersecting the current clip region with the current path as it would be filled by CairoContext::fill() or cairo_fill() and according to the current fill rule (see CairoContext::setFillRule() or cairo_set_

CairoContext::arcNegative

(PECL cairo >= 0.1.0) Adds a negative arc public void CairoContext::arcNegative ( float $x, float $y, float $radius, float $angle1, float $angle2 ) Object oriented style (method): Procedural style: void cairo_arc_negative ( CairoContext $context , float $x , float $y , float $radius , float $angle1 , float $angle2 ) Adds a circular arc of the given radius to the current path. The arc is centered at (x, y), begins at ang

CairoContext::arc

(PECL cairo >= 0.1.0) Adds a circular arc public void CairoContext::arc ( float $x, float $y, float $radius, float $angle1, float $angle2 ) Object oriented style (method): Procedural style: void cairo_arc ( CairoContext $context , float $x , float $y , float $radius , float $angle1 , float $angle2 ) Adds a circular arc of the given radius to the current path. The arc is centered at (x, y), begins at angle1 and proceeds

CairoContext::appendPath

(PECL cairo >= 0.1.0) Appends a path to current path public void CairoContext::appendPath ( CairoPath $path ) Object oriented style (method): Procedural style: void cairo_append_path ( CairoContext $context , CairoPath $path ) Appends the path onto the current path. The path may be either the return value from one of CairoContext::copyPath() or CairoContext::copyPathFlat(); if path is not a valid CairoPath instance a

Cairo::versionString

(PECL cairo >= 0.1.0) Retrieves cairo version as string public static string Cairo::versionString ( void ) Object oriented style (method): Procedural style: string cairo_version_string ( void ) Retrieves the current cairo library version as a string. Returns: Current Cairo library version string Examples: Object oriented style

Cairo::version

(PECL cairo >= 0.1.0) Retrives cairo's library version public static int Cairo::version ( void ) Object oriented style (method): Procedural style: int cairo_version ( void ) Retrieves the current version of the cairo library as an integer value Returns: Current Cairo library version integer Examples: Object oriented style

Cairo::statusToString

(PECL cairo >= 0.1.0) Retrieves the current status as string public static string Cairo::statusToString ( int $status ) Object oriented style (method): Procedural style: string cairo_status_to_string ( int $status ) Retrieves the current status as a readable string Parameters: status A valid status code given by cairo_status() or CairoContext::status()

Cairo::availableSurfaces

(PECL cairo >= 0.1.0) Retrieves all available surfaces public static array Cairo::availableSurfaces ( void ) Object oriented style (method): Procedural style: array cairo_available_surfaces ( void ) Returns an array with the available surface backends Returns: A list-type array with all available surface backends. Examples: Object

Cairo::availableFonts

(PECL cairo >= 0.1.0) Retrieves the availables font types public static array Cairo::availableFonts ( void ) Object oriented style: Procedural style: array cairo_available_fonts ( void ) Returns an array with the available font backends Returns: A list-type array with all available font backends. Examples: Object oriented style

cairo_svg_version_to_string

(PECL cairo >= 0.1.0) Description string cairo_svg_version_to_string ( int $version ) The function description goes here. Parameters: version Description... Returns: What is returned on success and failure This function is currently not documented; only its argument list is available.