You need to enable JavaScript to run this app.
导航
ImageX-豆包 AIGC(智能生图)
最近更新时间:2024.11.15 10:51:38首次发布时间:2024.11.15 10:51:38

阅读本文,您可以获取 PHP SDK ImageX-豆包 AIGC 的接口调用示例,实现快速开发。

调用说明

  • 本文提供的接口调用示例均通过 AK 和 SK 初始化实例。
  • 接口的参数说明和错误码等信息可通过接口文档查看。

前提条件

调用接口前请先完成初始化,具体操作请参考安装与初始化操作。

调用示例

本节为您介绍 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);