$src_height){ // paysage $ratio=$src_width/$src_height; $height=$width/$ratio; } }else{ // avec recadrage: on produit une image aux dimensions définies mais coupée if ($src_width<$src_height){ // portrait $recadrageY=round(($src_height-$src_width)/2); $src_height=$src_width; }else if ($src_width>$src_height){ // paysage $recadrageX=round(($src_width-$src_height)/2); $src_width=$src_height; } } // en fonction de l'extension $fichier = pathinfo($img); $extension=str_ireplace('jpg','jpeg',$fichier['extension']); $fonction='imagecreatefrom'.$extension; if (!$src = $fonction($img)){return false;} // création image $thumb = imagecreatetruecolor($width,$height); // gestion de la transparence // (voir fonction de Seebz: http://code.seebz.net/p/imagethumb/) if( $extension=='png' ){imagealphablending($thumb,false);imagesavealpha($thumb,true);} if( $extension=='gif' && @imagecolortransparent($img)>=0 ){ $transparent_index = @imagecolortransparent($img); $transparent_color = @imagecolorsforindex($img, $transparent_index); $transparent_index = imagecolorallocate($thumb, $transparent_color['red'], $transparent_color['green'], $transparent_color['blue']); imagefill($thumb, 0, 0, $transparent_index); imagecolortransparent($thumb, $transparent_index); } imagecopyresampled($thumb,$src,0,0,$recadrageX,$recadrageY,$width,$height,$src_width,$src_height); // gestion de la rotation @$exif = exif_read_data($img); if ($exif && array_key_exists('Orientation', $exif)) { $orientation = $exif['Orientation']; $angle = get_rotation_angle($orientation); $thumb = imagerotate($thumb, $angle, 0); } imagepng($thumb, $thumb_name); imagedestroy($thumb); return $thumb_name; } ?>