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:
<?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:
<?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