0

最も単純なもののうち、最も単純なもので少し停電があります。

「userpics」というフォルダがあり、そのフォルダにはuser-25.jpgなどの名前の100x100のプロフィール画像があります。そのフォルダには、シルエットのあるuser-none.jpgという画像もあり、未登録のユーザーがコメントを投稿したときにコメント機能の画像として使用されます。

私がやりたいのは、ユーザーが登録されたときに、user-none.jpg(シルエット付き)がコピーされ、user-26.jpgなどの名前が付けられることです。その後、ユーザーは自分のアカウントから新しいプロフィール画像をアップロードできます。

画像のコピー方法がわかりません。私はこれを試しました:

function CreateDummyProfileImage($user_id) {

        $new_dummy = "images/userpics/user-".$user_id.".jpg";

        $dummy = "images/userpics/user-none.jpg";

        list($current_width, $current_height) = getimagesize($dummy);

        $this->imageSizeH = 100;
        $this->imageSizeW = 100;

        $canvas = imagecreatetruecolor($this->imageSizeW,  $this->imageSizeH);
        $current_image = imagecreatefromjpeg($dummy);

        imagecopy($canvas, $current_image, 0, 0, 0, 0, $current_width, $current_height);
        imagejpeg($canvas, $new_dummy, 100);   
    }

しかし、それはうまくいかないようです。

解決済み:

/**********************************************************
     * Create a user with the basic info the user posted
     * in the creation form.
     * 
     * @param string    | The name of the user
     * @param string    | The users email address
     * @param string    | The password to login with
     **********************************************************/
    function CreateUser($name, $email, $password) { 

        /***
         * First we need no check if the email already exists in the system.
         * The statement right below will do that
         ***/
        $check_if_user_exists_sql = $this->db->selectSQL("email", "tdic_users", "email = '".$email."'");
        $check_if_user_exists_result = $this->db->SQLquery($check_if_user_exists_sql);

        if(mysql_num_rows($check_if_user_exists_result) > 0) {
            $this->main->txtOutput("The user with email ". $email ." is already registered", "TXT_ERR"); //The email already exists in the system! No further processing from here!
        } else {

            /*** If the email couldn't be found we will create a new user ***/

            /*** Array containing the fields required for user creation ***/
            $fields = array(
                "name" => $name, 
                "email" => $email, 
                "password" => $this->main->SaltMe(sha1($password)), 
                "user_date_created" => time(), //The current time
                "user_last_logged_in" => 0,
                "profileimage" => "user-none.jpg" //SET THIS INSTEAD OF COPYING THE AND RENAMING THE IMAGE
                );

            $create_user_sql = $this->db->insertSQL('tdic_users', $fields);
            $create_user_result = $this->db->SQLquery($create_user_sql);

            if($create_user_result) {
                $this->ActivationMail($name, $email);
                $this->main->txtOutput("You are now registered. In shorty you will recieve an email with an activation link. Please click that link to activate your account.", "TXT_OK"); //Everything went well - we will tell the user that!                
            } else {
               $this->main->txtOutput("An error occured", "TXT_ERR"); //Whoops! Something went wrong! This is unexpected!
            }
        }
    }
4

2 に答える 2

2

このためにGD関数に近づく必要はありません。ファイルをコピーするだけです。

function CreateDummyProfileImage($user_id) {
    $res = copy("images/userpics/user-none.jpg", "images/userpics/user-".$user_id.".jpg");
    return 'image'.($res ? '' : ' not').' created';
}

ただし、説明するモデルは正確には最適ではありません。ファイルを数え切れないほどコピーします。Beterは、出力の時点で1つのファイルまたは他のファイルを条件付きで表示することです。

$user_pic = 'path_to_user_pic.jpg';
$user_pic = file_exists($user_pic) ? $user_pic : 'path_to_silhouette.jpg';
于 2012-07-04T10:35:19.417 に答える
0

ストリームコピーは比較的高速です

function stream_copy($src, $dest)
{
    $fsrc = fopen($src,'r');
    $fdest = fopen($dest,'w+');
    $len = stream_copy_to_stream($fsrc,$fdest);
    fclose($fsrc);
    fclose($fdest);
    return $len;
}
于 2013-11-28T10:48:30.037 に答える