Zurück zu den Modellen
Live-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.

Modellübersicht
Endpunkt
/api/v1/images/generations
Credit-Kosten
5 credits / image
Typische Latenz
20-60 sec
Ein- und Ausgabe
1-3 images → PNG or JPEG

Funktionen

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

Anfrageparameter

ParameterTypAnforderungBeschreibung
modelstringErforderlichModel identifier. Standard: qwen-multi-angles
imagesstring[]ErforderlichOne to three public source image URLs.
horizontal_anglenumberOptionalHorizontal camera rotation in degrees. Standard: 0
vertical_anglenumberOptionalVertical camera rotation in degrees. Standard: 0
distancenumberOptionalRelative camera distance. Standard: 1

Anfragebeispiel

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"
}'

Der Generierungsendpunkt ist asynchron. Rufen Sie GET /api/v1/tasks/ mit demselben Bearer-Schlüssel ab.