The following code can help to generate thumbnails, provided your server is installed with imagemagick:
PHP Code:
if ($extension == "gif" or $extension == "png") {
system("$galleryconvert -geometry '160x120>' $path GIF:$thumbname");
} elseif ($extension == "jpg" or $extension == "jpeg" or $extension == "jpe" or $extension == "png" or $extension == "bmp") {
system("$galleryconvert -geometry '600x120>' $path -flatten -quality '75' JPEG:$thumbname");
}
1. $path refers to the directory where u store the thumnails e.g.
$path = "/home/yoursite/public_html/images";
2. $thumbname refers to the name u give to your thumbnail