PHP - 上传时调整图像大小并保持原始状态

时间:2014-12-28 00:22:18

标签: php image laravel upload resize

我使用Laravel 4创建网站,允许管理员一次上传大量图片。目前,我能够做到这一点,每个图像都有自己唯一的ID,并放入自己的相同ID名称的文件夹中。

问题是我需要应用程序还上传第二个调整大小(较小)的图像以及原始版本。我了解到你必须在客户端调整图像大小,所以我不确定如何保存原始图像以及较小版本。较小的图像应使用相同的ID命名,并使用某种类型的标识符,例如" -smaller"在名字的末尾。

这是我目前的前端;

    {{ Form::open(array('url' => 'imageUpload', 'files' => true, 'method' => 'post'))}}

                    <div class="form-group">
                      <label for="fileToUpload" class="col-sm-2 control-label">Choose All Images</label>
                    </br>
                      {{ Form::file('images[]', ['multiple' => true]) }}
                    </div>

                    <div class="col-sm-offset-2 col-sm-10">
                      {{ Form::submit('Add Photos', ['class' => 'btn btn-large btn-primary openbutton'])}}
                      <!--<button type="submit" class="btn btn-default">Sign in</button> -->
                    </div>

{{ Form::close() }} 

这是我的控制者;

    $files = Input::file('images');

    foreach($files as $file) {
        $rules = array(
           'file' => 'required|mimes:png,gif,jpeg,txt,pdf,doc,rtf|max:9999999999'
        );
        $validator = \Validator::make(array('file'=> $file), $rules);
        if($validator->passes()){

            $id = Str::random(14);
            $id = $race . "-" . $id;

            $destinationPath = 'raceImages/' . $id;
            //$filename = $id;
            $filename = $file->getClientOriginalName();
            $mime_type = $file->getMimeType();
            $extension = $file->getClientOriginalExtension();
            $upload_success = $file->move($destinationPath, $id);


            );
        } else {
            return Redirect::back()->with('error', 'I only accept images.');
        }
    }

1 个答案:

答案 0 :(得分:0)

这就是我在我的应用中解决同样问题的方法:

  1. 安装此软件包:https://github.com/Intervention/image
  2. 使用此代码:

    $createnew = new Yourmodelname;
     $avatar = Input::file('pic_path');
    if (isset($avatar)) { //will process the code only if an image was properly pointed in the form
    $image = Input::file('pic_path');
    var_dump($image->getRealPath()); // just for error tracking
    $filename = $image->getClientOriginalName();
    if (Image::make($image->getRealPath())->save('foldername/yourprefix_' . $LastInsertId . '_' . $filename)) {      } // foldername is related to your public folder
    if (Image::make($image->getRealPath())->widen(200)->save('foldername/thumbs/thumb_yourprefix_' . $LastInsertId . '_' . $filename)) {
    
    }
    
    $createnew->pic_path = 'event_poster_' . $LastInsertId . '_' . $filename;
    $createnew->pic_thumb = 'event_poster_thumb_' . $LastInsertId . '_' . $filename;
    $createnew->save();
    

    }

  3. 现在您有两个文件:一个原始文件(无更改)和缩放比例缩放到宽度280。 您可以在干预文档中找到其他调整大小选项。