| |
resize.exe.php
<?php
set_time_limit(320);
$cpt=1;
// Nouvelles tailles
$new_width = 80;
$new_height = 60;
$rep = opendir('.');
while ($file = readdir($rep)){
if ($file !='..' && $file !='.' && $file !='' ){
if (!is_dir($file)){
// Le fichier destination
$fileDestination=$cpt.'.jpg';
// Le fichier source
$fileSource = $file;
// Calcul des nouvelles dimensions
list($width, $height) = getimagesize($fileSource);
// Redimensionnement
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($fileSource);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
// Sauvegarde
imagejpeg($image_p, $fileDestination, 100);
sleep(0.1);
$cpt++;
}
}
}
closedir($rep);
?>
1
|