Wednesday, July 3, 2024
HomeLanguagesPhpPHP | 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

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments