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?



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

Answer / 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

More PHP Interview Questions

How do I make a reset button in html?

1 Answers  


Is php used in 2019?

1 Answers  


how to run PHP in command line?

8 Answers   InfoShore, Ramp Green, Xtreeme,


Tell me how can we change the maximum size of the files to be uploaded?

1 Answers  


how to upload more than 50 mb? i tried but session was expired....certain time .....i was set session duration three days .... how to rectified? if any one know that post ur answer as soon as possible?already i was increase php.ini and set Also increase Memory_limit Post_max_size upload_max_filesize..........but not working......

0 Answers  


Tell me how is it possible to remove escape characters from a string?

1 Answers  


Tell us how to redirect a page in php?

1 Answers  


What are the difference between echo and print?

1 Answers  


how to get server date and time?

10 Answers  


Why many companies are switching their current business language to php? Where php basically used?

1 Answers  


Is php front end or back end?

1 Answers  


What is the difference between mysql_fetch_array() and mysql_fetch_assoc()?

1 Answers  


Categories