我实现了这个库,在我的laravel项目中生成条形码图像 https://github.com/milon/barcode
一切正常,图像生成正确,但现在我想将条形码图像保存在我的存储文件夹中
对于条形码图像我只是在我的数据库中添加一个值,然后我在条形码图像中转换该值
这是我在数据库中添加值的代码:
<div class="form-group {{ $errors->first('barcode', 'has-error') }}">
<label for="title" class="col-sm-3 control-label">
Barcode
</label>
<div class="col-sm-6">
{{ Form::text('barcode', NULL, ['class' => 'form-control required', 'minlength' => 3]) }}
</div>
</div>
这是我用来生成条形码图像的代码:
{!! DNS1D::getBarcodeHTML("$employee->barcode", "C39")!!}
答案 0 :(得分:1)
试试这个
\Storage::disk('public')->put('test.png',base64_decode(DNS2D::getBarcodePNG("4", "PDF417")));
确保您的存储文件夹具有写入权限。