略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: CairoContext::fill

2024-03-28

CairoContext::fill

cairo_fill

(PECL cairo >= 0.1.0)

CairoContext::fill -- cairo_fillFills the current path

说明

面向对象风格 (method):

public CairoContext::fill ( void ) : void

过程化风格:

cairo_fill ( CairoContext $context ) : void

A drawing operator that fills the current path according to the current CairoFillRule, (each sub-path is implicitly closed before being filled). After CairoContext::fill() or cairo_fill(), the current path will be cleared from the CairoContext.

参数

context

A valid CairoContext object created with CairoContext::__construct() or cairo_create()

返回值

没有返回值。

范例

Example #1 面向对象风格

<?php

$s 
= new CairoImageSurface(CairoFormat::ARGB32100100);
$c = new CairoContext($s);
 
$c->setSourceRgb(000);
$c->paint();

$c->setSourceRgb(111);
$c->rectangle(005050);
$c->fill();
$c->setSourceRgb(010);
$c->rectangle(50505050);
$c->fill();

$s->writeToPng(dirname(__FILE__) . '/CairoContext_fill.png');

?>

以上例程的输出类似于:

...

Example #2 过程化风格

<?php

$s 
cairo_image_surface_create(CAIRO_SURFACE_TYPE_IMAGE100100);
$c cairo_create($s);

cairo_set_source_rgb($c000);
cairo_paint($c);

cairo_set_source_rgb($c111);
cairo_rectangle($c005050);
cairo_fill($c);
cairo_set_source_rgb($c010);
cairo_rectangle($c50505050);
cairo_fill($c);

cairo_surface_write_to_png($sdirname(__FILE__) . '/cairo_fill.png');

?>

以上例程的输出类似于:

...

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/cairocontext.fill.php

冷却塔厂家 广告
-- 广告
北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3