阅读本文,您可以获取 PHP SDK ImageX-豆包 AIGC 的接口调用示例,实现快速开发。
调用接口前请先完成初始化,具体操作请参考安装与初始化操作。
本节为您介绍 ImageX-豆包 AIGC 相关接口的功能和调用示例。
您可以调用 GetCVTextGenerateImage 接口获取结果图访问 URL。详细的参数说明可参见 GetCVTextGenerateImage 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->getCVTextGenerateImage($query, $body); print_r($response);
您可以调用 CreateCVImageGenerateTask 接口获取异步文生图任务的任务 ID。详细的参数说明可参见 CreateCVImageGenerateTask 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->createCVImageGenerateTask($query, $body); print_r($response);
您可以调用 GetCVImageGenerateTask 接口获取文生图异步任务详情。详细的参数说明可参见 GetCVImageGenerateTask 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->getCVImageGenerateTask($query, $body); print_r($response);
您可以调用 GetCVImageGenerateResult 接口获取结果图访问 URL。详细的参数说明可参见 GetCVImageGenerateResult 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->getCVImageGenerateResult($query, $body); print_r($response);
您可以调用 GetCVAnimeGenerateImage 接口获取结果图访问 URL。详细的参数说明可参见 GetCVAnimeGenerateImage 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->getCVAnimeGenerateImage($query, $body); print_r($response);