Question :
How can I create thumbnails using PHP?
Answer :
function thumbnail($image_path,$thumb_path,$image_name,$thumb_width)
{
$src_img = imagecreatefromjpeg("$image_path/$image_name");
$origw=imagesx($src_img);
$origh=imagesy($src_img);
$new_w = $thumb_width;
$diff=$origw/$new_w;
$new_h=$new_w;
$dst_img = imagecreate($new_w,$new_h);
imagecopyresized($dst_img,$src_img,0,0,0,0,$new_w,$new_h,imagesx($src_img),imagesy($src_img));
imagejpeg($dst_img, "$thumb_path/$image_name");
return true;
}
The above will create a hard copy of the JPG.
Are there simple codes like this but also good for gif, png?
Or I just need to copy this script, calling the functions for gif or png, and check to see what image format the image is and calling the right function?
Thanks!