/ Published in: PHP
Expand |
Embed | Plain Text
//---------- To create thumbnail of image--------------- if($extension=="jpg" || $extension=="jpeg" ){ $src = imagecreatefromjpeg($_FILES['thumb_img']['tmp_name']); } else if($extension=="png"){ $src = imagecreatefrompng($_FILES['thumb_img']['tmp_name']); } else{ $src = imagecreatefromgif($_FILES['thumb_img']['tmp_name']); } $newwidth=151; $newheight=151;//($height/$width)*$newwidth; $tmp=imagecreatetruecolor($newwidth,$newheight); imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight, $width,$height); imagejpeg($tmp,$img_thumb,100); //-------------- Ends ----------- $blog_thumb = get_site_option('rt_blog_thumb'); update_site_option('rt_blog_thumb', $blog_thumb); } }
You need to login to post a comment.
