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