This simple command-line application demonstrates how to invoke Google Vision API from PHP.
- Enable APIs - Enable the Vision API and create a new project or select an existing project.
- Download The Credentials - Click "Go to credentials" after enabling the APIs. Click "New Credentials"
and select "Service Account Key". Create a new service account, use the JSON key type, and
select "Create". Once downloaded, set the environment variable
GOOGLE_APPLICATION_CREDENTIALSto the path of the JSON key that was downloaded. - Clone the repo and cd into this directory
$ git clone https://github.com/GoogleCloudPlatform/php-docs-samples
$ cd php-docs-samples/vision
- Install dependencies via Composer.
Run
php composer.phar install(if composer is installed locally) orcomposer install(if composer is installed globally). - For a basic demonstration of the Cloud Vision API, run
php quickstart.php. - Run
php vision.php. The following commands are available:
face Detect faces in an image using Google Cloud Vision API
help Displays help for a command
label Detect labels in an image using Google Cloud Vision API
landmark Detect landmarks in an image using Google Cloud Vision API
list Lists commands
logo Detect logos in an image using Google Cloud Vision API
property Detect image proerties in an image using Google Cloud Vision API
safe-search Detect adult content in an image using Google Cloud Vision API
text Detect text in an image using Google Cloud Vision API
crop-hints Detect crop hints in an image using Google Cloud Vision API
document-text Detect document text in an image using Google Cloud Vision API
web Detect web entities in an image using Google Cloud Vision API
web-geo Detect web entities in an image with geo metadata using
Google Cloud Vision API
- Run
php vision.php COMMAND --helpto print information about the usage of each command.
This sample uses the Google Cloud Client Library for PHP. You can read the documentation for more details on API usage and use GitHub to browse the source and report issues.
If you get the following error, set the environment variable GCLOUD_PROJECT to your project ID:
[Google\Cloud\Core\Exception\GoogleException]
No project ID was provided, and we were unable to detect a default project ID.
If you have not set a timezone you may get an error from php. This can be resolved by:
- Finding where the php.ini is stored by running
php -i | grep 'Configuration File' - Finding out your timezone from the list on this page: http://php.net/manual/en/timezones.php
- Editing the php.ini file (or creating one if it doesn't exist)
- Adding the timezone to the php.ini file e.g., adding the following line:
date.timezone = "America/Los_Angeles"
- See CONTRIBUTING.md
- See LICENSE
