Package Data | |
---|---|
Maintainer Username: | keshunchen |
Maintainer Contact: | keshunchen@qq.com (keshunchen) |
Package Create Date: | 2017-09-01 |
Package Last Update: | 2019-04-03 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-08 03:04:22 |
Package Statistics | |
---|---|
Total Downloads: | 368 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 0 |
Total Forks: | 0 |
Total Open Issues: | 0 |
百度文字识别API在Laravel5中的简单封装,具体API使用详情参见百度文字识别API
直接在composer.json
中添加"keshunchen/baiduocr": "~1.0"
或者直接composer require "keshunchen/baiduocr"
。
laravel5
:config/app.php
文件内添加 'providers' => [
Keshunchen\Baiduocr\BaiduocrServiceProvider::class,
],
'aliases' => [
'Baiduocr' => Keshunchen\Baiduocr\BaiduocrFacade::class,
],
php artisan vendor:publish
修改config/baiduocr.php配置百度API参数
\Baiduocr::idcard($image, $isFront, $options);
MIT