0

画像がアップロードされると、あるフォルダーから別のフォルダーにコピーされる画像サイズの縮小に関するテスト済みの動作コードを作成しました。画像サイズを幅 300、高さ 300 に縮小します。

また、同じ画像サイズを幅 100、高さ 100 に縮小したいので、最小の画像をプロフィール画像と電子メールの受信トレイ画像として使用できます。もう一方はユーザー アルバムの画像 300 と高さ 300 です。

アップロードした画像を、幅 300 と高さ 300 と 100 と高さ 100 の 2 つの異なるサイズにコピーする必要があります。

私を助けてください。

            if(move_uploaded_file($this->tem_path, $terger_path)){                  
                $exe = explode(".", $this->filename);
                $ext = $exe[1];
                $w = 300;
                $h = 300;
                $target = SITE_ROOT.DS.$this->img_path.DS.$this->filename;              
                $newcopy = SITE_ROOT.DS.$this->resize.DS.$this->filename; 
                list($w_orig, $h_orig) = getimagesize($target);
                $scale_ratio = $w_orig / $h_orig;
                if (($w / $h) > $scale_ratio) {
                   $w = $h * $scale_ratio;
                } else {
                   $h = $w / $scale_ratio;
                }
                $img = "";
                $ext = strtolower($ext);
                if ($ext == "gif"){ 
                     $img = imagecreatefromgif($target);
                } else if($ext =="png"){ 
                     $img = imagecreatefrompng($target);
                } else { 
                  $img = imagecreatefromjpeg($target);
                }
                $tci = imagecreatetruecolor($w, $h);
                imagecopyresampled($tci, $img, 0, 0, 0, 0, $w, $h, $w_orig, $h_orig);
                if(@imagejpeg($tci, $newcopy, 80)){
                //  return true;
                    $terger_path = SITE_ROOT.DS.$this->img_path.DS.$this->filename;
                    return unlink($terger_path) ? true : false;                     
                }                   

            }
4

1 に答える 1