要使用URI与PHP库一起使用Google Vision API,请按照以下步骤操作:
在您的PHP项目中,使用Composer安装Google Cloud Vision客户端库。在命令行中运行以下命令:
composer require google/cloud-vision
要使用Google Vision API,您需要一个API密钥。请访问Google Cloud Console(https://console.cloud.google.com/
),创建一个新项目,并启用Cloud Vision API。然后,在"凭据"页面创建一个服务帐户,并将生成的JSON密钥文件保存到您的PHP项目中的安全位置。
使用GCP服务帐户的JSON密钥文件创建一个Vision API客户端。以下是一个示例代码:
<?php
require_once 'vendor/autoload.php';
// 设置GCP服务帐户的JSON密钥文件路径
$jsonCredentialFile = '/path/to/your/gcp-credential-file.json';
// 初始化Vision API客户端
$client = new Google\Cloud\Vision\V1\ImageAnnotatorClient([
'credentials' => $jsonCredentialFile,
]);
// 设置您要分析的图像URI
$imageUri = 'https://example.com/image.jpg';
// 为图像URI创建一个Image对象
$image = new Google\Cloud\Vision\V1\Image();
$image->setSource(new Google\Cloud\Vision\V1.ImageSource());
$image->getSource()->setImageUri($imageUri);
// 创建一个AnnotateImageRequest对象,并设置特征
$annotationRequest = new Google\Cloud\Vision\V1.AnnotateImageRequest();
$annotationRequest->setImage($image);
$annotationRequest->setFeatures([
new Google\Cloud\Vision\V1.Feature([
'type' => Google\Cloud\Vision\V1.Feature\Type::LABEL_DETECTION,
]),
]);
// 发送请求并获取响应
$responses = $client->batchAnnotateImages([$annotationRequest]);
$response = $responses[0];
// 处理响应
if ($response->hasError()) {
echo "Error: " . $response->getError()->getMessage() . PHP_EOL;
} else {
// 在这里处理检测到的标签
$labels = $response->getLabelAnnotations();
foreach ($labels as $label) {
echo "Label: " . $label->getDescription() . PHP_EOL;
}
}
// 关闭客户端
$client->close();
在上面的示例中,我们使用LabelDetection
特征检测图像中的标签。您可以根据需求更改setFeatures
方法中的特征类型。
这样,您就可以使用URI与PHP库一起使用Google Vision API了。在生产环境中,请确保妥善保管您的GCP服务帐户密钥文件。
领取专属 10元无门槛券
手把手带您无忧上云