'; } } ftp_close($conn_id); } function ParsePicture($filename,$conn_id) { $ftpfilename = 'public_html/fotoboek/'.$filename; if (!file_exists($filename)) { echo 'niet gedaan' ; exit; } //@chmod($filename, 0777); $longestsize = 500; $pix_size = GetImageSize($filename); $width = $pix_size[0]; $height = $pix_size[1]; //if ($width = $longestsize ){return;} //if ($height = $longestsize){return;} //&& $width < $height ftp_chmod($conn_id, 0777, $ftpfilename); //echo $width.'
'; //echo $height.'
'; if ($width>$height){ //liggend $ratio = $longestsize / $width; }else{ //staand $ratio = $longestsize / $height; } //die; $original = ImageCreateFromJPEG($filename); //--resize picture------------------------------------------------------------------------- if ($ratio != 1){ $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 ?>