如何将base64图像解码保存到laravel中的公用文件夹

时间:2019-02-06 08:10:35

标签: php laravel laravel-4 php-7

我得到一个格式为字符串base64的图像,我想将该字符串解码为图像并将其保存到laravel中的公共文件夹中。

这是我的控制者:

//decode string base64 image to image 
$image = base64_decode($request->input('ttd'));
//create image name
$photo_name = time().'.png';
$destinationPath = public_path('/uploads');
//save image to folder
$image->move($destinationPath, $photo_name);
$img_url = asset('/uploads'.$photo_name);


$data = new Transaction();
$data->transaction_id = $request->input('fa_transaction_id');
$data->user_id = $request->input('userid');
$data->photo_name = $photo_name;
$data->photo_url = $img_url;
$data->save();

当我尝试回显$ image时,我得到了解码值,对于$ photo_name我也得到了该值,但是当函数运行时出现此错误

Call to a member function move() on string

如何解决此错误?

2 个答案:

答案 0 :(得分:2)

//Controller

use Illuminate\Support\Facades\Storage;

//Inside method

    $image = $request->image;  // your base64 encoded
    $image = str_replace('data:image/png;base64,', '', $image);
    $image = str_replace(' ', '+', $image);
    $imageName = str_random(10) . '.png';

    Storage::disk('local')->put($imageName, base64_decode($image));

此外,请确保您的local磁盘的配置与/config/filesystems.php中的

    'local' => [
        'driver' => 'local',
        'root' => storage_path('app/public'),
    ]

这样,文件将保存在/storage/app/public目录中。

不要忘记编写php artisan storage:link来使该目录中的文件在/public目录中可用,因此用户可以检索它们。

答案 1 :(得分:0)

在数据库中保存图像不是将图像存储在db中的推荐方法,原因是内存速度增加,正确的方法是将链接保存到其中。
无论如何,您可以使用以下代码将图像保存在base64中。
从服务器中的路径而不是从$path中的链接中获取正确的图像。

<?php
    // Base 64 transform image
    $path = __DIR__ .'/myfolder/myimage.png';
    $type = pathinfo($path, PATHINFO_EXTENSION);
    $data = file_get_contents($path);
    $base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
    echo $base64;