'.$tooltip.'
'; } } if ($teller == 0){ echo 'Geen foto\'s
gevonden !
'; } } function ParsePicture($filename,$size) { //@chmod($filename, 0666); if (!file_exists($filename)) { echo 'niet gedaan' ; exit; } $longestsize = $size; $pix_size = GetImageSize($filename); $width = $pix_size[0]; $height = $pix_size[1]; if ($width>$height){ //liggend $ratio = $longestsize / $width; }else{ //staand $ratio = $longestsize / $height; } //--resize picture------------------------------------------------------------------------- if ($ratio != 1){ $original = ImageCreateFromJPEG($filename); $twidth = $width * $ratio; $theight = $height * $ratio; $foto = ImageCreateTrueColor($twidth,$theight); imagecopyresampled($foto,$original,0,0,0,0,$twidth,$theight,imagesx($original),imagesy($original)); imagejpeg($foto,$filename,75); imagedestroy($foto); imagedestroy($original); //unlink($filename); } } //end function ?>