0

我知道这个问题之前在这里被问过,但我真的需要有人来解释我如何在我的情况下使用它。

这是我上传图片的简单 php 脚本:

<?php
    if(isset($_POST['submit'])){
        $ipad=$_SERVER['REMOTE_ADDR'];
        //This is the directory where images will be saved 
        $target = "images/"; 
        $email=$_POST['email'];
        $target = $target . basename( $_FILES['photo']['name']);  
        //This gets all the other information from the form 
        $pic=($_FILES['photo']['name']); 
        $resultes =mysql_query("SELECT * FROM image WHERE `name` = '$pic'");

        if($pic != '' and $email != '' and mysql_num_rows($resultes) == 0){
            mysql_query("INSERT into image(name , email, ipadd) values ('$pic','$email','$ipad' )"); 
            //Writes the photo to the server 
            if(move_uploaded_file($_FILES['photo']['tmp_name'], $target)) { 
?> 
                <div class="error">The file has been uploaded, and your information has been added to the directory</div>
<? }
        } else { 
        //Gives and error if its not 
        echo '<div class="error">'. $gal_error_noupload .'</div>'; 
        } 
        $pic=='';
    }           

?>

如何添加调整大小代码?那就是给这里

4

1 回答 1

0
<?php
    if(isset($_POST['submit'])){
        $ipad=$_SERVER['REMOTE_ADDR'];
        //This is the directory where images will be saved 
        $target = "images/"; 
        $email=$_POST['email'];
        $target = $target . basename( $_FILES['photo']['name']);  
        //This gets all the other information from the form 
        $pic=($_FILES['photo']['name']); 
        $resultes =mysql_query("SELECT * FROM image WHERE `name` = '$pic'");

        if($pic != '' and $email != '' and mysql_num_rows($resultes) == 0){
            mysql_query("INSERT into image(name , email, ipadd) values ('$pic','$email','$ipad' )"); 
            //Writes the photo to the server 
            if(move_uploaded_file($_FILES['photo']['tmp_name'], $target)) { 

                            // *** Include the class
                            include("resize-class.php");

                            // *** 1) Initialise / load image
                            $resizeObj = new resize($target);

                            // *** 2) Resize image (options: exact, portrait, landscape, auto, crop)
                            $resizeObj -> resizeImage(200, 200, 'crop');

                            // *** 3) Save image
                            $resizeObj -> saveImage($target, 1000);
                            <div class="error">The file has been uploaded, and your information has been added to the directory</div>

            } else { 
            //Gives and error if its not 
            echo '<div class="error">'. $gal_error_noupload .'</div>'; 
            } 
            $pic=='';
        }
    }           

?>

这应该用较小的版本替换图像。代替

$resizeObj -> saveImage($target, 1000);

如果你想保留大的,还有别的东西。

于 2013-11-05T12:47:29.057 回答