日期:2014-05-17 浏览次数:20433 次
<?php $img=imagecreatefromgif("./images/1.gif");//自己随便找张gif图片 echo "width:".imagesx($img)."px</br>"; echo "height:".imagesy($img)."px</br>"; imagegif($img); imagedestroy($img);