Voting

: min(nine, zero)?
(Example: nine)

The Note You're Voting On

mamcia at gmail dot com
14 years ago
Seems that this method doesn't work as expected. Use Imagick::floodFillPaintImage() instead.

<?php
$img
= new Imagick('/tmp/test.png');
$img->floodFillPaintImage('green', 10, 'white', 100, 100, false);
$img->writeImage('/tmp/out.png');
$img->clear();
$img->destroy();
?>

<< Back to user notes page

To Top