PHP | Función Imagick getImageLength()

La función Imagick::getImageLength() es una función incorporada en PHP que se usa para obtener la longitud de un objeto de imagen en bytes.

Sintaxis:

bool Imagick::getImageLength( void)

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve la longitud de la imagen en bytes.

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

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

<?php
  
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
  
// Getting Length of image
// using getimagerelength function
$res = $imagick->getImageLength();
  
// Display Result 
echo "Length of Image = " . $res;
?>

Producción:

Length of Image = 45435 

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

<?php
  
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54-1.png');
  
// Getting Length of image
// using getimagerelength function
$res = $imagick->getImageLength();
  
// Display Result 
echo "Length of Image = ". $res;
?>

Producción:

Length of Image = 25694 

Referencia: http://php.net/manual/en/imagick.getimagelength.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 *