Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can you get the size of an image in PHP?

Answer Posted / Sanchit Kumar Aluna

To get the size of an image in PHP, you can use the getimagesize() function. Here's an example:

```php
$image_info = getimagesize('path/to/image.jpg');
echo $image_info[0] * $image_info[1]; // total pixels
```

In this code, we use the getimagesize() function to get information about an image file and store it in a variable. The first element of the returned array contains the width of the image, and the second element contains the height. We then calculate and output the total number of pixels.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What sized websites have you worked on in the past?

1071


What is difference between static and final in php?

1074


sort term descripttion form, report and uery

2252


Explain me is it possible to destroy a cookie?

1009


if you run the app program all vendor open items are cleared but is it possible to reverse the again again open items please tell me the answer

1973


What does $_files means?

1149


how to detect a mobile device using php

1162


What is trait in php?

1053


Write a program using while loop?

1102


List some features of php that are deprecated in php7?

1012


What is the current stable version of php? What advance thing in php7?

1076


Tell me what kind of things have you done on the social side?

1051


hello all, I need some sample placement papers in lion bridge.. can anyone help me?

2155


Name and explain five of the PHP error constants?

1017


What is the difference between htmlentities() and htmlspecialchars()?

1076