您的位置:首页 > 其它

函数getimagesize获得图片的长宽等信息

2014-03-28 17:25 525 查看
函数getimagesize返回一个具有四个单元的数组。 
索引 0 包含图像宽度的像素值, 
索引 1 包含图像高度的像素值。 
索引 2 是图像类型的标记:1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM。 
这些标记与 PHP 4.3.0 新加的 IMAGETYPE 常量对应。索引 3 是文本字符串,内容为“height="yyy" width="xxx"”,可直接用于 IMG 标记。
$images_array = array("http://static.zend.com/img/logo.gif");foreach($images_array as $image){list($width, $height, $type, $attr) = getimagesize($image);$new_height = (int)(192 / $width * $height);echo '<li><img src="'.$image.'" width="192px" height="'.$new_height.'" />';}
本文章来至源码世界 http://www.ymsky.net/views/51324.shtml
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  motorola 索引