array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'imagick.clutimage.php', 1 => 'Imagick::clutImage', 2 => 'Replaces colors in the image', ), 'up' => array ( 0 => 'class.imagick.php', 1 => 'Imagick', ), 'prev' => array ( 0 => 'imagick.clone.php', 1 => 'Imagick::clone', ), 'next' => array ( 0 => 'imagick.coalesceimages.php', 1 => 'Imagick::coalesceImages', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/imagick/imagick/clutimage.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PECL imagick 2, PECL imagick 3)
Imagick::clutImage — Replaces colors in the image
Replaces colors in the image from a color lookup table. Optional second parameter to replace colors in a specific channel. Diese Funktion ist verfügbar, wenn Imagick gegen die ImageMagick-Version 6.3.6 oder höher kompiliert wurde.
lookup_tableImagick object containing the color lookup table
channelThe Channeltype constant. When not supplied, default channels are replaced.
Liefert true bei Erfolg.
Beispiel #1 Using Imagick::clutImage():
Replace colors in the image from a color lookup table.
<?php
$image = new Imagick('test.jpg');
$clut = new Imagick();
$clut->newImage(1, 1, new ImagickPixel('black'));
$image->clutImage($clut);
$image->writeImage('test_out.jpg');
?>