ImagickDraw::setFillColor

(PECL imagick 2.0.0)

ImagickDraw::setFillColorSets the fill color to be used for drawing filled objects

Beskrivelse

bool ImagickDraw::setFillColor ( ImagickPixel $fill_pixel )
Advarsel

This function is currently not documented; only its argument list is available.

Sets the fill color to be used for drawing filled objects.

Parametre

fill_pixel

ImagickPixel to use to set the color

Returnerings Værdier

No value is returned.

add a note add a note

User Contributed Notes 1 note

up
2
moguchicorp at gmail dot com
13 years ago
It also accepts color definitions by name and hexa, as in

<?php
$draw
= new ImagickDraw();

/* defined color black */
$draw->setFillColor('black');

/* some light brown */
$draw->setFillColor('#a4610f');

?>
To Top