Verbose output with die at end

This commit is contained in:
alopexc0de 2013-02-19 02:25:52 -05:00
parent a952729268
commit 6d57b39575
1 changed files with 5 additions and 4 deletions

View File

@ -68,7 +68,7 @@
//imagejpeg($dimg,$dest,100);
}
function createThumbs(){ // Generates a thumbnail for every image in the Pictures directory
function createThumbs(){ // Generates a thumbnail for every image in the Pictures directory - Resource heavy
$pathToImages = 'Pictures/';
$pathToThumbs = 'thumbs/';
$dir = opendir( $pathToImages );
@ -123,19 +123,20 @@
switch(strtolower($stype)) {
case 'gif':
imagegif($dimg, "{$pathToThumbs}{$fname}" ,100);
echo ". Done. <img src='C:\\users\\c0de\\Desktop\\thumbs\\$fname'><br>\n";
echo ". Done. <img src='thumbs/$fname'><br>\n";
break;
case 'jpg':
imagejpeg($dimg, "{$pathToThumbs}{$fname}" ,100);
echo ". Done. <img src='C:\\users\\c0de\\Desktop\\thumbs\\$fname'><br>\n";
echo ". Done. <img src='thumbs/$fname'><br>\n";
break;
case 'png':
imagepng($dimg, "{$pathToThumbs}{$fname}" ,9);
echo ". Done. <img src='C:\\users\\c0de\\Desktop\\thumbs\\$fname'><br>\n";
echo ". Done. <img src='thumbs/$fname'><br>\n";
break;
}
}
closedir( $dir );
die("<script>alert('All thumbnails have been refreshed.');</script>");
}
?>