Sunday, August 31, 2025
HomeLanguagesPHP | Imagick getImageSize() Function

PHP | Imagick getImageSize() Function

The Imagick::getImageSize() function is an inbuilt function in PHP which is used to get the image length in bytes.

Syntax:

int Imagick::getImageSize( void )

Parameters: This function doesn’t accepts any parameter.

Return Value: This function returns an integer value containing the current image size.

Below programs illustrate the Imagick::getImageSize() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the Image Size
$size = $imagick->getImageSize();
echo 'Image size is '. $size . ' bytes.';
?>


Output:

Image size is 45435 bytes.

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the Image Size
$size = $imagick->getImageSize();
echo 'Image size is '. $size . ' bytes.';
?>


Output:

Image size is 36283 bytes.

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

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

Most Popular

Dominic
32250 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6619 POSTS0 COMMENTS
Nicole Veronica
11792 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11840 POSTS0 COMMENTS
Shaida Kate Naidoo
6734 POSTS0 COMMENTS
Ted Musemwa
7014 POSTS0 COMMENTS
Thapelo Manthata
6689 POSTS0 COMMENTS
Umr Jansen
6704 POSTS0 COMMENTS