|
|
| PHP Scripts Examples and Tutorials |
| Get height and width from a image using php |
|
|
Thursday Aug 03, 2006 This example will show you how to get the height and width from a image
| Script |
<? $imageurl = "http://www.webmasterscity.net/logo.jpg"; list($width, $height) = getimagesize("$imageurl"); ?> |
Author: Safras Ahamed
|
|
|
|