PHP | Función Imagick getImageAttribute()

La función Imagick::getImageAttribute() es una función incorporada en PHP que se utiliza para obtener el atributo con nombre de una clave.

Sintaxis:

string Imagick::getImageAttribute( string $key )

Parámetros: esta función acepta un único parámetro $key que contiene el valor de la clave en formato de string.

Valor de retorno: esta función devuelve un valor de string en caso de éxito.

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

Programa 1:

<?php
  
// Create a Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
  
// Get the attribute with key 'hello'
$attribute = $imagick->getImageAttribute('hello');
  
echo $attribute;
?>

Producción:

Empty string as it is the default value. 

Programa 2:

<?php
  
// Create a Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
  
// Set an attribute with key 'hello'
$imagick->setImageAttribute('hello', 'world');
  
// Get the attribute with key 'hello'
$attribute = $imagick->getImageAttribute('hello');
  
echo $attribute;
?>

Producción:

world

Referencia: https://www.php.net/manual/en/imagick.getimageattribute.php

Publicación traducida automáticamente

Artículo escrito por gurrrung 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 *