PHP | Función Imagick setImageMatte()

La función Imagick::setImageMatte() es una función incorporada en PHP que se usa para establecer el canal mate de un objeto Imagick.

Sintaxis:

bool Imagick::setImageMatte( $matte )

Parámetros: esta función acepta un solo parámetro $matte . Si el parámetro se establece en True, activa el canal mate y si el parámetro se establece en False, desactiva el canal mate.

Valor de retorno: esta función devuelve True en caso de éxito.

Los siguientes programas ilustran la función Imagick::setImageMatte() en PHP:

Imagen original:
https://media.geeksforgeeks.org/wp-content/uploads/geeks-21.png

Programa 1:

<?php
  
// Create new Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
  
// Using getImageMatte function
$res = $imagick->getImageMatte();
  
// Display result
echo "Matte Before: " . $res . "</br>";
  
// Set Image matte true.
// If it set to false then matte will 
// disable and return nothing when 
// using getimagematte function
$imagick->setImageMatte(true);
  
// Using getImageMatte function
$res = $imagick->getImageMatte();
  
// Display result
echo "Matte After: " . $res . "</br>";
?>

Producción:

Matte Before: 1
Matte After: 1

Imagen original:
https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54.png

Programa 2:

<?php 
  
$string = "Computer Science portal for Geeks!"; 
  
// Creating new image of above String 
// and add color
$im = new Imagick(); 
$draw = new ImagickDraw(); 
  
// Fill the color in image 
$draw->setFillColor(new ImagickPixel('green')); 
  
// Set the text font size 
$draw->setFontSize(50); 
  
$metrix = $im->queryFontMetrics($draw, $string); 
$draw->annotation(0, 40, $string); 
$im->newImage($metrix['textWidth'], $metrix['textHeight'], 
        new ImagickPixel('white')); 
// Draw the image         
$im->drawImage($draw); 
$im->setImageFormat('jpeg'); 
  
// Using getImageMatte function
$res = $im->getImageMatte();
  
// Display result
echo "Matte Before: " . $res . "</br>";
  
// Set Image matte true/false or (0/1)
// if set false then matte will disable 
// and return nothing when 
// using getimagematte function
$im->setImageMatte(false);
  
// Using getImageMatte function
$res = $im->getImageMatte();
  
// Display result
echo "Matte After: " . $res . "</br>";
?>

Producción:

Matte Before: 1
Matte After: 

Referencia: http://php.net/manual/en/imagick.setimagematte.php

Publicación traducida automáticamente

Artículo escrito por R_Raj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *