Qwen Image Edit 2509 Multiple Angles
Playground
Try it on WavespeedAI!Qwen Image Edit 2509 Multiple Angles is an AI image editing model that generates multiple-angle views of objects or scenes from a single image. Transform perspectives and create diverse viewpoints with text prompts. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
Qwen Image Edit 2509 Multiple Angles
Qwen Image Edit 2509 Multiple Angles generates new camera perspectives of a subject from reference images. Control horizontal rotation, vertical tilt, and camera distance to create realistic multi-angle views — perfect for product photography and 3D visualization without reshooting.
Why Choose This?
-
Multi-angle generation Create new camera perspectives from up to 3 reference images.
-
Precise horizontal rotation Rotate the viewpoint in 5 positions: -90 (left), -45, 0 (front), 45, 90 (right).
-
Vertical tilt control Adjust camera elevation: -30 (low angle), 0 (eye level), 30 (elevated), 60 (high angle).
-
Camera distance Control zoom level: 0 = close-up, 1 = medium shot, 2 = wide shot.
-
Optional prompt guidance Add text descriptions to refine the generated perspective.
Parameters
| Parameter | Required | Description |
|---|---|---|
| images | Yes | Reference images, up to 3 (click ”+ Add Item”) |
| horizontal_angle | No | Horizontal rotation: -90, -45, 0, 45, 90 (default: 90) |
| vertical_angle | No | Vertical tilt: -30, 0, 30, 60 (default: 0) |
| distance | No | Camera distance: 0 (close-up), 1 (medium), 2 (wide) (default: 1) |
| prompt | No | Text description to guide the output |
| size | No | Custom output size |
| seed | No | Random seed for reproducibility (-1 for random) |
| output_format | No | Output format: jpeg (default), png, webp |
| enable_base64_output | No | Return BASE64 string instead of URL (API only) |
| enable_sync_mode | No | Wait for result before returning response (API only) |
Angle Reference
Horizontal Angle (horizontal_angle):
- -90 → left side view
- -45 → rotate left 45 degrees
- 0 → front view
- 45 → rotate right 45 degrees
- 90 → right side view
Vertical Angle (vertical_angle):
- -30 → low angle (looking up)
- 0 → eye level
- 30 → elevated view
- 60 → high angle (looking down)
Distance:
- 0 → close-up
- 1 → medium shot
- 2 → wide shot
How to Use
- Upload your images — provide 1-3 reference images.
- Set horizontal angle — choose the horizontal rotation.
- Set vertical angle (optional) — adjust camera elevation.
- Set distance (optional) — choose close-up, medium, or wide shot.
- Add prompt (optional) — describe any additional guidance.
- Run — submit and download the new perspective.
Pricing
| Output | Cost |
|---|---|
| Per image | $0.025 |
Best Use Cases
- Product Photography — Generate multiple product angles from a few reference shots.
- E-commerce — Produce multi-angle product listings without reshooting.
- 3D Visualization — Preview objects from different perspectives.
- Sports & Action — Create alternate viewing angles of action scenes.
- Creative Exploration — Experiment with camera angles and compositions.
Pro Tips
- Use multiple reference images from different angles for more accurate results.
- Combine horizontal rotation with vertical tilt for dynamic camera positions.
- Use distance 0 for detail shots, distance 2 for full-body or environment context.
- Values are rounded to the nearest valid angle automatically.
- Keep seed consistent to compare different angle settings on the same subject.
Notes
- Images is the only required field; maximum 3 reference images.
- Angle values are rounded to the nearest valid position.
- enable_base64_output and enable_sync_mode are API-only parameters.
- Ensure uploaded image URLs are publicly accessible.
- Seed value -1 generates a random seed each time.
Related Models
- Qwen Image Max Edit — Bilingual image editing with multi-image support.
- Qwen Image Max Text-to-Image — Generate images from text descriptions.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/qwen-image/edit-2509-multiple-angles" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"horizontal_angle": 0,
"vertical_angle": 0,
"distance": 1,
"seed": -1,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| images | array | Yes | [] | 1 ~ 3 items | The input images. A maximum of 3 reference images can be uploaded. |
| horizontal_angle | integer | No | - | -90 ~ 90 | Horizontal rotation angle in degrees. Controls the camera's horizontal position. Negative values rotate left, positive values rotate right. Values are rounded to the nearest valid angle: -90 (left), -45 (rotate left), 0 (front), 45 (rotate right), 90 (right). |
| vertical_angle | integer | No | - | -30 ~ 60 | Vertical tilt angle (elevation) in degrees. Controls the camera's vertical position. Values are rounded to the nearest valid angle: -30 (low angle), 0 (eye level), 30 (elevated), 60 (high angle). |
| distance | integer | No | 1 | 0 ~ 2 | Camera distance/zoom level. 0 = close-up, 1 = medium shot, 2 = wide shot. |
| prompt | string | No | - | Optional additional prompt to guide the generation. This is appended to the angle prompt. | |
| size | string | No | - | 256 ~ 1536 per dimension | The size of the generated media in pixels (width*height). |
| seed | integer | No | -1 | -1 ~ 2147483647 | The random seed to use for the generation. -1 means a random seed will be used. |
| output_format | string | No | jpeg | jpeg, png, webp | The format of the output image. |
| enable_base64_output | boolean | No | false | - | If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API. |
| enable_sync_mode | boolean | No | false | - | If set to true, the function will wait for the result to be generated and uploaded before returning the response. It allows you to get the result directly in the response. This property is only available through the API. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |