Zurück zu den Modellen
Live-APIQwen Image Tools
Live-APIQwen Image ToolsQwen Multi-Angles
qwen-multi-anglesCreate 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
| Parameter | Typ | Anforderung | Beschreibung |
|---|---|---|---|
| model | string | Erforderlich | Model identifier. Standard: qwen-multi-angles |
| images | string[] | Erforderlich | One to three public source image URLs. |
| horizontal_angle | number | Optional | Horizontal camera rotation in degrees. Standard: 0 |
| vertical_angle | number | Optional | Vertical camera rotation in degrees. Standard: 0 |
| distance | number | Optional | Relative 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.