我正在尝试使用Intervention来调整图像大小,然后将其保存在我定义的磁盘中,但我无法让它工作。使用public_folder将其保存在我的应用程序的根目录中名为/ public的文件夹中。
我已经创建了一个新磁盘
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'visibility' => 'public',
],
'images' => [
'driver' => 'local',
'root' => storage_path('app/public/images'),
'visibility' => 'public',
],
我需要接受用户的输入,然后将上传的文件保存到该磁盘,然后将文件路径保存到数据库。
$fieldFile = $request->file($fieldName);
$imageName = time();
Image::make($fieldFile)->crop(350, 350)->save(public_path() . '/' . $imageName . '.' . $fieldFile->getClientOriginalExtension());
$object->$fieldName = public_path() . '/' . $imageName . '.' . $fieldFile->getClientOriginalExtension();
我想最终得到类似于
应该发生的事情$fieldValue = $fieldFile->store($fieldName, 'images');
该文件最终应该在
/path/to/laravel/storage/app/public/images/
稍后,如果我将图像磁盘更改为s3或其他位置,我希望此代码继续运行。
答案 0 :(得分:2)
您需要像这样对图像进行编码
$fieldFile = $request->file($fieldName);
$mime= $fieldFile->getClientOriginalExtension();
$imageName = time().".".$mime;
$image = Image::make($fieldFile)->crop(350, 350)
Storage::disk('public')->put("images/".$imageName, (string) $image->encode());
答案 1 :(得分:0)
$fieldFile = $request->file($fieldName);
//$imageName = time();
$mime= $fieldFile->getClientOriginalExtension();
$imageName = time().".".$mime;
$image = Image::make($fieldFile)->crop(350, 350)
$location = Storage::disk('images')->put($imageName, $image);
//images can be substituted for any disk local or s3 etc.
答案 2 :(得分:0)
我有一个辅助控制器,您可以尝试。 https://github.com/RashiqulRony/Help_Content/blob/master/MediaController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
use Image;
class MediaController
{
public $basePath = '';
public $originalPath = '';
public $file = '';
public $name = '';
public $thumbPath = '';
public $thumb = false;
public $storageFolder = 'storage/';
public $imageResize = [];
public $thumbResize = [300, 300];
//Common File Upload Function...
private function upload()
{
$file = $this->file;
if ($this->name) {
$fileName = Str::slug($this->name, '-').'.'.$file->getClientOriginalExtension();
} else {
$newName = str_replace('.'.$file->getClientOriginalExtension(), '', $file->getClientOriginalName());
$fileName = time().'-'.Str::slug($newName, '-').'.'.$file->getClientOriginalExtension();
}
$data['name'] = $fileName;
$data['originalName'] = $file->getClientOriginalName();
$data['size'] = $file->getSize();
$data['mime_type'] = $file->getMimeType();
$data['ext'] = $file->getClientOriginalExtension();
$data['url'] = url($this->storageFolder.$this->originalPath.$data['name']);
//If real image need to resize...
if (!empty($this->imageResize)) {
$file = Image::make($file)->resize($this->imageResize[0], $this->imageResize[1]);
Storage::put($this->originalPath.'/'.$fileName, (string) $file->encode());
} else {
Storage::putFileAs($this->originalPath, $file, $data['name']);
}
if ($this->thumb) {
Image::make($this->storageFolder.$this->originalPath.$data['name'])
->resize($this->thumbResize[0], $this->thumbResize[1])
->save($this->storageFolder.$this->thumbPath.'/'.$data['name']);
}
return $data;
}
//Upload Image ("$definePath" and "$definePath/thumb") folder....
public function imageUpload($requestFile, $path, $thumb = false, $name = null, $imageResize = [], $thumbResize = [300, 300])
{
//Path Create...
$realPath = $this->basePath.$path.'/';
if (!Storage::exists($realPath)) {
Storage::makeDirectory($realPath);
}
if (!Storage::exists($realPath.'thumb') && $thumb) {
Storage::makeDirectory($realPath.'thumb');
}
$this->file = $requestFile;
$this->originalPath = $realPath;
$this->thumbPath = $realPath.'thumb';
$this->thumb = $thumb;
$this->name = $name;
$this->imageResize = $imageResize;
$this->thumbResize = $thumbResize;
return $this->upload();
}
//Upload Video in "$definePath" folder....
public function videoUpload($requestFile, $path, $name = null)
{
//Path Create...
$realPath = $this->basePath.$path.'/';
if (!Storage::exists($realPath)) {
Storage::makeDirectory($realPath);
}
$this->file = $requestFile;
$this->originalPath = $realPath;
$this->name = $name;
return $this->upload();
}
//Upload AnyFile in "$definePath" folder....
public function anyUpload($requestFile, $path, $name = null)
{
//Path Create...
$realPath = $this->basePath.$path.'/';
if (!Storage::exists($realPath)) {
Storage::makeDirectory($realPath);
}
$this->file = $requestFile;
$this->originalPath = $realPath;
$this->name = $name;
return $this->upload();
}
//Upload Content in "$definePath" folder....
public function contentUpload($content, $path, $name)
{
//Path Create...
$realPath = $this->basePath.$path.'/';
if (!Storage::exists($realPath)) {
Storage::makeDirectory($realPath);
}
Storage::put($name, $content);
$data['name'] = $name;
$data['url'] = $path.'/'.$name;
return $data;
}
//Only thumb image create in "$definePath/thumb" folder....
public function thumb($path, $file, $thumbPath = false, $thumbWidth = 300, $thumbHeight = 300)
{
$realPath = $this->basePath.$path;
if (!$thumbPath) {
$thumbPath = $this->basePath.$path.'/thumb';
}
if (!Storage::exists($thumbPath)) {
Storage::makeDirectory($thumbPath);
}
$img = Image::make($this->storageFolder.$realPath.'/'.$file)
->resize($thumbWidth, $thumbHeight)
->save($this->storageFolder.$thumbPath.'/'.$file);
if (isset($img->filename)) {
return true;
} else {
return false;
}
}
//Delete file "$definePath" folder....
public function delete($path, $file, $thumb = false)
{
$path = $this->basePath.$path.'/';
if (Storage::exists($path.'/'.$file)) {
Storage::delete($path.'/'.$file);
if ($thumb) {
Storage::delete($path.'/thumb/'.$file);
}
return true;
}
return false;
}
}