La función Imagick::recolorImage() es una función incorporada en PHP que se usa para traducir, escalar, cortar o rotar colores de imágenes. Esta función se utiliza como variable de tamaño de array. Normalmente se usa una array de 5×5 para RGBA y 6×6 para CMYK.
Sintaxis:
bool Imagick::recolorImage( $matrix )
Parámetros: esta función acepta un único parámetro $matrix que se utiliza para almacenar el valor de la array de color.
Valor de retorno: esta función devuelve True en caso de éxito.
Imagen original:
El siguiente programa ilustra la función Imagick::recolorImage() en PHP:
Programa 1:
php
<?php // Create new Imagick object $imagick = new \Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-19.png'); // Color Matrix $remapColor = [ 1, 0, 0, 0, 0, 1, 0, 1, 0, ]; // Recolor the Image $imagick->recolorImage($remapColor); header("Content-Type: image/jpg"); // Display the image echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
php
<?php $string = "Computer Science portal for Geeks!"; // Creating new image of above String // and add color and background $im = new Imagick(); $draw = new ImagickDraw(); // Fill the color in image $draw->setFillColor(new ImagickPixel('green')); // Set the text font size $draw->setFontSize(50); $matrix = $im->queryFontMetrics($draw, $string); $draw->annotation(0, 40, $string); $im->newImage($matrix['textWidth'], $matrix['textHeight'], new ImagickPixel('white')); // Draw the image $im->drawImage($draw); // Recolor the Image $remapColor = [ 1, 300, 70, 10, 0, 40, 10, 10, 0, ]; $im->recolorImage($remapColor); $im->setImageFormat('jpeg'); header("Content-Type: image/jpg"); // Display the output image echo $im->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/imagick.recolorimage.php
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA