How can I find the width of an image using PHP? -


I was wondering how to find the width of the image using PHP.

Easy, you can use:

  list ($ Width, $ height) = getimagesize ($ filename);  

Comments