PHP » GoLang |
login |
register |
about
|
GoLang CairoContext::clipRectangleList
request it (309)
GoLang replacement for PHP's CairoContext::clipRectangleList
[edit | history]
PHP CairoContext::clipRectangleListPHP original manual for CairoContext::clipRectangleList [ show | php.net ]CairoContext::clipRectangleListcairo_clip_rectangle_list(PECL cairo >= 0.1.0) CairoContext::clipRectangleList -- cairo_clip_rectangle_list — Retrieves the current clip as a list of rectangles DescriptionObject oriented style (method):
public array CairoContext::clipRectangleList
( void
)
Procedural style: Returns a list-type array with the current clip region as a list of rectangles in user coordinates Parameters
Return ValuesAn array of user-space represented rectangles for the current clip (The status in the list may be CAIRO_STATUS_CLIP_NOT_REPRESENTABLE to indicate that the clip region cannot be represented as a list of user-space rectangles. The status may have other values to indicate other errors.) Examples
Example #1 Object oriented style
<?php The above example will output something similar to: array(1) { [0]=> array(4) { ["x"]=> float(0) ["y"]=> float(0) ["width"]=> float(50) ["height"]=> float(50) } }
Example #2 Procedural style
<?php The above example will output something similar to: array(1) { [0]=> array(4) { ["x"]=> float(0) ["y"]=> float(0) ["width"]=> float(50) ["height"]=> float(50) } } See Also
|
more
Recently updated
more
Most requested
more
Last requests
|