Friday, February 6, 2026
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
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12073 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7236 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6930 POSTS0 COMMENTS