dongyuqie4322 2010-09-23 12:26
浏览 31
已采纳

上传文件后创建php缩略图

Hi friends what is the best way to create thumbnail on the fly after uploading an image ?

move_uploaded_file($source, $dest)
//uploaded successfully
//what will be code to generate thumbnail ?
  • 写回答

2条回答 默认 最新

  • doudang2817 2010-09-23 12:36
    关注

    TRY THIS...

    function create_img($file_name,$dir,$dest_dir,$maxwidth,$maxheight){
        /* adjust server memory size, file upload size, and post size
        *  htaccess file:
        *  php_value post_max_size 16M
        *  php_value upload_max_filesize 6M
        *  script:
        *  ini_set('memory_limit', '100M'); //handle large images
        */
        ini_set('memory_limit', '100M');
        if(file_exists($dir)){
                    $file = "$dir/$file_name";
                    if(!file_exists($dest_dir.$file_name)){
                        list($orig_width, $orig_height, $type) = getimagesize($file);
                        //calculate dimensions
                        if ($orig_width > $maxwidth){
                            $height = $maxwidth * ($orig_height / $orig_width);
                            $width = $maxwidth;
                            if($height>$maxheight){
                                $height = $maxheight;
                                $width = $maxheight * ( $orig_width / $orig_height);
                            }
                        }
                        elseif($orig_height > $maxheight){
                            $height = $maxheight;
                            $width = $maxheight * ($orig_width / $orig_height);
                            if($width>$maxwidth){
                                $height = $maxwidth * ($orig_height / $orig_width);
                                $width = $maxwidth;
                            }
                        }
                        else{
                            $width = $orig_width;
                            $height = $orig_height;    
                        }                    
    
                        $obr_p = @imagecreatetruecolor($width, $height);
                        if ($type == 1) {
                            $obr = @imagecreatefromgif($file);
                            imagecopyresampled($obr_p, $obr, 0, 0, 0, 0, $width, $height, $orig_width, $orig_height);
                            imagegif($obr_p, "$dest_dir/$file_name");
                        }
    
                        else if($type == 2) {
                            $obr = imagecreatefromjpeg($file);
                            imagecopyresampled($obr_p, $obr, 0, 0, 0, 0, $width, $height, $orig_width, $orig_height);
                            imagejpeg($obr_p, "$dest_dir/$file_name",100);
                        } 
                        else if($type == 3){
                            $obr = @imagecreatefrompng($file);
                            imagecopyresampled($obr_p, $obr, 0, 0, 0, 0, $width, $height, $orig_width, $orig_height);
                            imagepng($obr_p, "$dest_dir/$file_name");
                        }             
                        else{
                            return FALSE;
                        }
                    }// if exist
                    else{
                        return FALSE;
                    }
        }//if exist dir
        else{
            return FALSE;
        }
    }//end create_img
    

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部