My .php app displays an image on the web page, I notice that different
..jpg images display "funny" - apparently they all have slightly
different image widths and heights yet in the image tag I have to set
those properties to something - is there a way in php to get an image
width and height so I can set it correctly for each image?
<IMG SRC="<?php echo $php_image ?>" WIDTH="268" HEIGHT="176"
BORDER="0" ALT="">
..jpg images display "funny" - apparently they all have slightly
different image widths and heights yet in the image tag I have to set
those properties to something - is there a way in php to get an image
width and height so I can set it correctly for each image?
<IMG SRC="<?php echo $php_image ?>" WIDTH="268" HEIGHT="176"
BORDER="0" ALT="">
Comment