如何使用Laravel从数据库中存储和检索图像内容

时间:2016-02-16 09:42:17

标签: php laravel

我必须从数据库中存储和检索图像。 我想存储图像而不是图像路径或图像名称。当我搜索它时,我只找到了存储图像路径或名称的解决方案。那么有人可以告诉我如何从数据库中存储和检索大小为KB的图像吗?

这是我的路线。

 public  function new_store(Request $request ,$id){
    $event_id = $id;
    $img = new big_image;
    $file =  $request->file('image');
    $contents = $file->openFile()->fread($file->getSize());
    $img = big_image::find($id);
    $img->image = $contents;
    $img->image_name = $request->image_name;
    $img->event_id = $event_id;
    $img->save();
  $images=DB::table('big_image')->where('event_id','=',$event_id)->get();
  return view('image_upload',compact('images','id','response'));
}

});

这是我的控制器

@extends('app')
@section('content')
  <h2 style="text-align: center;margin-top: 10px;">Image Gallery</h2>
  <a href="{{url('pic_upload/'.$id.'')}}" class="col-sm-12"             style="padding-left: 0;"><span> add more pictures</span></a><br>
  <a href="{{url('events')}}"><span>Back to events</span></a><br>
   @foreach($images as $item)
    <div class="col-sm-4">
    {{--<img src="data:image/jpeg;base64,'.base64_encode( $item->image  ).'"/>;--}}
    </div>
@endforeach
@stop

我的display.blade.php文件

id=tag_exits

2 个答案:

答案 0 :(得分:6)

实际上在Laravel中它只涉及几行代码。假设您的用户具有存储在数据库中的头像。假设你正在使用MySQL,这里是你如何从数据库中存储和检索头像:

1。首先,您需要在avatar表中有一个users列,可以存储二进制数据。根据您希望允许头像图像的大小,列的数据类型可以是以下之一:

  

BLOB 高达64KB

     

MEDIUMBLOB 最高16MB

     

LONGBLOB 最高4GB

2. 要将上传的图像存储在数据库中,您可以执行以下操作:

Route::post('user/{id}', function (Request $request, $id) {
    // Get the file from the request
    $file = $request->file('image');

    // Get the contents of the file
    $contents = $file->openFile()->fread($file->getSize());

    // Store the contents to the database
    $user = App\User::find($id);
    $user->avatar = $contents;
    $user->save();
});

3. 要获取和输出头像,您可以执行以下操作:

Route::get('user/{id}/avatar', function ($id) {
    // Find the user
    $user = App\User::find(1);

    // Return the image in the response with the correct MIME type
    return response()->make($user->avatar, 200, array(
        'Content-Type' => (new finfo(FILEINFO_MIME))->buffer($user->avatar)
    ));
});

因此,要访问id等于10的用户的头像,您只需使用此网址:

http://domain.com/user/10/avatar

答案 1 :(得分:0)

您可以在blob字段中的数据库中存储文件。

也许this link会帮助你

然后您可以为图片创建网址:

Route::get('/images/{image}', function($image)
{
    header("Content-type: image/jpeg");
    //"select image from table where id = $image"
   echo $here_I_get_my_img_from_DB;
});

并从网址获取img:/image/{img_id}