> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jiekou.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Nano Banana Pro Light 文生图 (reverse)

根据文本描述生成图像

## 请求头

<ParamField header="Content-Type" type="string" required={true}>
  枚举值: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer 身份验证格式: Bearer \{\{API 密钥}}。
</ParamField>

## 请求体

<ParamField body="n" type="integer" default={1}>
  要生成的图像数。必须介于1和10之间。

  取值范围：\[1, 10]
</ParamField>

<ParamField body="size" type="string" default="1x1">
  生成图像的大小

  可选值：`1x1`, `2x3`, `3x2`, `3x4`, `4x3`, `4x5`, `5x4`, `9x16`, `16x9`, `21x9`
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  所需图像的文本描述。
</ParamField>

<ParamField body="quality" type="string" default="1k">
  选择图像生成质量

  可选值：`1k`, `2k`, `4k`
</ParamField>

<ParamField body="response_format" type="string" default="url">
  返回生成的图像的格式。必须是url之一—b64\_json。

  可选值：`url`, `b64_json`
</ParamField>

## 响应信息

<ResponseField name="data" type="object[]" required={true}>
  生成的图像列表

  <Expandable title="properties" defaultOpen={true}>
    <ResponseField name="url" type="string" required={false}>
      图像URL（当response\_format为url时）
    </ResponseField>

    <ResponseField name="b64_json" type="string" required={false}>
      Base64编码的图像数据（当response\_format为b64\_json时）
    </ResponseField>

    <ResponseField name="revised_prompt" type="string" required={false}>
      修订后的提示词（如果有的话）
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="created" type="integer" required={true}>
  创建时间戳
</ResponseField>
