DJ Mike's Tutorials: PHP

Imagemagick Functions


^

Imagick::paintOpaqueImage

Description:
bool Imagick::paintOpaqueImage ( mixed $target , mixed $fill , float $fuzz [, int $channel ] )

Changes any pixel that matches color with the color defined by fill.
Parameters
target
Change this target color to the fill color within the image. An ImagickPixel object or a string representing the target color.
fill
An ImagickPixel object or a string representing the fill color.
fuzz
The fuzz member of image defines how much tolerance is acceptable to consider two colors as the same.
channel
Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channeltype constants using bitwise operators. Defaults to Imagick::CHANNEL_ALL.
Channel constants:
imagick::CHANNEL_UNDEFINED
imagick::CHANNEL_RED
imagick::CHANNEL_GRAY
imagick::CHANNEL_CYAN
imagick::CHANNEL_GREEN
imagick::CHANNEL_MAGENTA
imagick::CHANNEL_BLUE
imagick::CHANNEL_YELLOW
imagick::CHANNEL_ALPHA
imagick::CHANNEL_OPACITY
imagick::CHANNEL_MATTE
imagick::CHANNEL_BLACK
imagick::CHANNEL_INDEX
imagick::CHANNEL_ALL
Return Values
Returns TRUE on success.
Errors/Exceptions
Throws ImagickException on error.

Example


<?php
$image 
= new Imagick("logo.png");
$image->paintopaqueimage"#ffffff""skyblue"25 );
header"Content-Type: image/png" );
echo 
$image;
?>




^

Created by DJ Mike from Santa Barbara

DJ Mike


Dance Away Santa Barbara's Home Page
<a href="http://www.statcounter.com/" target="_blank"> <img src="http://c5.statcounter.com/counter.php?sc_project=1321035&java=0&security=da2193dc" alt="counter free hit invisible" border="0" /></a>