1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
$NomImageFinalMedium= $FILES['name'];
if(isset($_FILES['fichier']['name'])){
$source_image_extension = thumbs::get_image_extension($_FILES['fichier']['name']);
print_r($source_image_extension);
$source_image_path = '../../organisateur/avatar/background.'.$source_image_extension;
if(move_uploaded_file($_FILES['fichier']['tmp_name'], $source_image_path)){
$thumbs_saving_path_Medium = '../../organisateur/avatar/'.$pseudo_membre.'/';
$thumbs_image_quality = 100;
/*creation miniature Medium (80*80)*/
$tbMedium = new thumbs($source_image_path, $thumbs_saving_path_Medium, $thumbs_image_quality);
$tbMedium->resize(180,180,"FFFFFF",$NomImageFinalMedium.'');
unlink($source_image_path);
}
}
else
{
echo 'Le dossier n existe pas.';
} |
Partager