HTML interesse |
|
Ik krijg de volgende foutmelding met een galleryscript die thums on the fly genereert.
Foutmelding:
Warning: getimagesize(): Read error! in fotos/bbfeest[19_11_04]/index.php on line 53
Regel 53:
$imageinfo = getimagesize($_images_dir_.$f);
Verwijzing uit stukje code:
if ($dh = opendir($_images_dir_)) {
while (($f = readdir($dh)) !== false) {
if((substr(strtolower($f),-3) == 'jpg') || (substr(strtolower($f),-3) == 'jpg'))
{
$imageinfo = getimagesize($_images_dir_.$f);
$width = $imageinfo[0];
$height = $imageinfo[1];
$size = round(filesize($_images_dir_.$f)/1024,1).' KB';
$noimage++;
$images[] = array('filename' => $f, 'width' => $width, 'height' => $height, 'size' => $size);
array_multisort($images, $_sort_, SORT_REGULAR);
}
}
closedir($dh);
}
if ($dh = opendir($_images_dir_)) { while (($f = readdir($dh)) !== false) { { $width = $imageinfo[0]; $height = $imageinfo[1]; $noimage++; $images[] = array('filename' => $f, 'width' => $width, 'height' => $height, 'size' => $size); } } }
Wie ziet de fout... voor een andere map werkt alles prima.. vreemd dat het in deze map een fout geeft.
|