我有以下程序来计算图像的高度和宽度在比较getImageSize();PHP函数的快速方式。原因是什么?远程镜像需要下载到您的服务器上,然后由php在本地读取。
<?php
function getimagesize($image_url){
$handle = fopen ($image_url, "rb");
$contents = "";
if ($handle) {
do {
$count += 1;
$data = fread($handle, 8192);
if (strlen($data) == 0) {
break;
}
$contents .= $data;
} while(true);
} else { return false; }
fclose ($handle);
$im = ImageCreateFromString($contents);
if (!$im) { return false; }
$gis[0] = ImageSX($im);
$gis[1] = ImageSY($im);
// array member 3 is used below to keep with current getimagesize standards
$gis[3] = "width={$gis[0]} height={$gis[1]}";
ImageDestroy($im);
return $gis;
}
$image_url = "http://xample.com/4.jpg";
$get = getimagesize($image_url);
print $get;
?>
但是在执行这段php代码后,我得到了以下错误
Fatal error: Cannot redeclare getimagesize() in C:\wamp\www\test\CheckWH.php on line 25
发布于 2012-11-22 14:37:10
在PHP中已经有一个叫做getImageSize的标准方法了。重命名你的方法,一切都很好。
发布于 2012-11-22 14:41:10
您可以使用php中的标准方法getimagesize()。
list($width, $height) = getimagesize("http://xample.com/4.jpg");
echo "$width x $height (px)";
https://stackoverflow.com/questions/13514888
复制相似问题