2017 © Pedro Peláez
 

vcs google-cloud-vision-php

image

thangman22/google-cloud-vision-php

  • Saturday, December 24, 2016
  • by thangman22
  • Repository
  • 4 Watchers
  • 21 Stars
  • 5,537 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 20 Forks
  • 3 Open issues
  • 7 Versions
  • 8 % Grown

The README.md

Build Status, (*1)

GoogleCloudVisionPHP

This project hosts the PHP library for the various RESTful based Google Cloud Vision API(s) [Read about Google Cloud Vision API] (https://cloud.google.com/vision/), (*2)

Features

  • Support almost feature of Google Cloud Vision API (Version 1)
  • Auto encode images to based64

how to get service key

Google Cloud Vision API Document, (*3)

Requirements

  • PHP >= 5.4 with cURL extension

Installation

Add this to your composer.json, (*4)

"require": {
        "thangman22/google-cloud-vision-php": "*"
    }

Example

use GoogleCloudVisionPHP\GoogleCloudVision;

$gcv = new GoogleCloudVision();

// Follow instruction from Google Cloud Vision Document
$gcv->setKey("[Key from Google]");

$gcv->setImage("[File path]");

// 1 is Max result
$gcv->addFeature("LABEL_DETECTION", 1);

$gcv->addFeatureUnspecified(1);
$gcv->addFeatureFaceDetection(1);
$gcv->addFeatureLandmarkDetection(1);
$gcv->addFeatureLogoDetection(1);
$gcv->addFeatureLabelDetection(1);
$gcv->addFeatureOCR(1);
$gcv->addFeatureSafeSeachDetection(1);
$gcv->addFeatureImageProperty(1);

//Optinal
$gcv->setImageContext(array("languageHints"=>array("th")));

$response = $gcv->request();

The Versions

24/12 2016

dev-master

9999999-dev

  Sources   Download

The Development Requires

by Warat Wongmaneekit

24/12 2016

1.0.4

1.0.4.0

  Sources   Download

The Development Requires

by Warat Wongmaneekit

24/12 2016

1.0.2

1.0.2.0

  Sources   Download

The Development Requires

by Warat Wongmaneekit

24/12 2016

1.0.3

1.0.3.0

  Sources   Download

The Development Requires

by Warat Wongmaneekit

24/12 2016

1.02

1.02.0.0

  Sources   Download

The Development Requires

by Warat Wongmaneekit

19/03 2016

1.0.1

1.0.1.0

  Sources   Download

The Development Requires

by Warat Wongmaneekit

19/03 2016

1.0

1.0.0.0

  Sources   Download

The Development Requires

by Warat Wongmaneekit