You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
399 B
17 lines
399 B
12 months ago
|
<?php
|
||
|
require('../../vendor/autoload.php');
|
||
|
use Volc\Service\ImageX;
|
||
|
|
||
|
$client = ImageX::getInstance();
|
||
|
|
||
|
// call below method if you dont set ak and sk in ~/.volc/config
|
||
|
$client->setAccessKey("xx");
|
||
|
$client->setSecretKey("xx");
|
||
|
|
||
|
$params = array();
|
||
|
$params["ServiceId"] = "xx";
|
||
|
$params["StoreUri"] = "xx";
|
||
|
$params["Scene"] = "license";
|
||
|
|
||
|
$response = $client->getImageOCR($params);
|
||
|
print_r($response);
|