返回模型目录
在线 APIQwen Image Tools

Qwen Multi-Angles

qwen-multi-angles

Create a new camera viewpoint from one to three reference images using explicit horizontal, vertical, and distance controls.

模型概览
端点
/api/v1/images/generations
积分成本
5 credits / image
典型耗时
20-60 sec
输入与输出
1-3 images → PNG or JPEG

能力

  • Camera orbit control
  • Elevation control
  • Distance control
  • Reference preservation

请求参数

参数类型要求说明
modelstring必填Model identifier. 默认值: qwen-multi-angles
imagesstring[]必填One to three public source image URLs.
horizontal_anglenumber可选Horizontal camera rotation in degrees. 默认值: 0
vertical_anglenumber可选Vertical camera rotation in degrees. 默认值: 0
distancenumber可选Relative camera distance. 默认值: 1

请求示例

curl https://qwenapi.org/api/v1/images/generations \
  -H "Authorization: Bearer $QWEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "qwen-multi-angles",
  "images": [
    "https://example.com/product.jpg"
  ],
  "horizontal_angle": 45,
  "vertical_angle": 10,
  "distance": 1,
  "output_format": "jpeg"
}'

生成端点为异步任务。请使用同一个 Bearer 密钥轮询 GET /api/v1/tasks/。