Simple example :
<?php
$image = new Imagick('test.jpg');
$CMYK_color_model = array(0,100,0,0);
$image->recolorImage($CMYK_color_model) ;
header('Content-type: image/jpg');
echo $image
?>
Imagick::recolorImage
(No version information available, might only be in SVN)
Imagick::recolorImage — Recolors image
Beschreibung
bool Imagick::recolorImage
( array
$matrix
)Translate, scale, shear, or rotate image colors. This method supports variable sized matrices but normally 5x5 matrix is used for RGBA and 6x6 is used for CMYK. The last row should contain the normalized values. Diese Funktion ist verfügbar, wenn Imagick gegen die ImageMagick-Version 6.3.6 oder höher kompiliert wurde.
Parameter-Liste
-
matrix -
The matrix containing the color values
Rückgabewerte
Liefert TRUE bei Erfolg.
softmixt at gmail dot com ¶
16 days ago
