承接 jonasva/laravel-vision 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jonasva/laravel-vision

Composer 安装命令:

composer require jonasva/laravel-vision

包简介

A Laravel 5 package to interact with Google Cloud Vision.

README 文档

README

Easy way to analyze images with Laravel and Google Cloud Vision. Check their demo to see what it can do.

Features

Optical Character Recognition

Convert an image or PDF document to text

$path = $request->file('file')->getRealPath();

$text = Vision::getFullText($path);

Annotate image

Get annotations of your image for one or more Vision features.

Make sure you extract the same type of annotations from the response as the feature you requested. (eg: Type::FACE_DETECTION -> $response->getFaceAnnotations())

use Google\Cloud\Vision\V1\Feature\Type;

$path = $request->file('file')->getRealPath();

$features = [Type::FACE_DETECTION];

$response = Vision::annotateImage($path, $features);

$faces = $response->getFaceAnnotations();

Installation

Laravel

This package can be installed through Composer.

composer require jonasva/laravel-vision

Publish config

php artisan vendor:publish --provider="Jonasva\Vision\VisionServiceProvider"

Google Cloud Console

In order to use the Google Cloud Vision API, you'll need to setup a couple of things in Google Cloud Console.

  1. Go to Cloud Console and select a project (or create a new one).

  2. Add your project ID to your env file under GOOGLE_CLOUD_PROJECT

  3. Go to the API library and find "Cloud Vision API". Click "Enable"

  4. Create a service account + credentials file for Cloud Vision API. Place the credentials file in your project, and add the path (relative to your project root) to it in your env file under GOOGLE_APPLICATION_CREDENTIALS. (see config/vision.php file for more details.)

  5. Setup a Google Cloud Storage bucket and make sure your newly created Cloud Vision service account user has read/write permissions to it. This bucket will be used to process PDF and TIFF type files.

  6. Add the bucket name in your env under GOOGLE_CLOUD_BUCKET

  7. I suggest setting up a lifecycle rule for your bucket to automatically remove files older than 1 day.

Pricing

Make sure you take a look at Cloud Vision API's pricing, as it's not an entirely free service.

统计信息

  • 总下载量: 36
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 6
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-05-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固