Friday, December 12, 2025
HomeLanguagesPHP | Imagick pingImage() Function

PHP | Imagick pingImage() Function

The Imagick::pingImage() function is an inbuilt function in PHP which is used to get the basic attributes of the image. This method is used to query image width, height, size, and format without reading the whole image into memory.

Syntax:

bool Imagick::pingImage( $filename )

Parameters: This function accepts single parameter $filename which holds the file name of the image.

Return Value: This function returns True on success.

Below program illustrates the Imagick::pingImage() function in PHP:

Program: This program tells the height and width of the image with the help of image link.




<?php
  
// Create new Imagick object
$image = new Imagick();
  
// Use Imagick::pingImage() function to the image
$image->pingImage(
  
// Use getImageWidth() function to for image width attribute
$width = $image->getImageWidth();
  
// Use getImageHeight() function to for image width attribute
$height = $image->getImageHeight();
  
// Display the output
echo "Width of image: " . $width . "px<br>";
echo "Height of image: " . $height . "px";
  
?>


Output:

Width of image: 600px
Height of image: 135px

Reference: https://www.php.net/manual/en/imagick.pingimage.php

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32445 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12029 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7199 POSTS0 COMMENTS
Thapelo Manthata
6895 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS