我想知道是否可以执行某种函数来获取受限宽度图像的高度?我可以使用以下方法获得原始高度:
list($width, $height, $type, $attr) = getimagesize($path."/images/".$image->image);
但是我在页面上的图像被限制为 580px 宽:
<img src="/images/<?php echo $image->image; ?>" width="580" height="????" border="0" />
我想知道是否有可能获得约束宽度图像的新高度?