关于给定图像的大小调整过程我有一个小问题,我正在尝试提交一个包含输入类型的表单->文件<--我能够在不调整大小的情况下上传图片,之后我决定调整它的大小图像,所以我使用以下方法安装了干预图像库:
composer require intervention/image
然后我将该库集成到我的 Laravel 框架中
Intervention\Image\ImageServiceProvider::class
'Image' => Intervention\Image\Facades\Image::class
最后我像下面这样配置它
php artisan vendor:publish --provider="Intervention\Image\ImageServiceProviderLaravel5"
我的控制器如下
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Input;
use Image;
class ProjectController extends Controller{
public function project(Request $request){
$file = Input::file('file');
$fileName = time().'-'.$file->getClientOriginalName();
$file -> move('uploads', $fileName);
$img=Image::make('public/uploads/', $file->getRealPath())->resize(320, 240)->save('public/uploads/',$file->getClientOriginalName());
}
}
但不是调整图片大小,而是引发以下异常
NotReadableException in AbstractDecoder.php line 302:
Image source not readable