Enjoy 50% OFF Vidu Q3 & Q3 Pro models • Only on WaveSpeedAI | May 20 – Jun 2

Qwen Image Edit Plus

wavespeed-ai /

Qwen-Image-Edit-Plus (2509) is a 20B MMDiT image editor with multi-image editing, single-image consistency and native ControlNet support. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

image-to-image
Input

Drag & drop or click to upload

preview
If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API.
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.

Idle

Put a Santa hat on the puppy

$0.02per run·~50 / $1

Next:

ExamplesView all

Put a Santa hat on the puppy

Put a Santa hat on the puppy

Color the Spider-Man and change his pose to the fighting stance.

Color the Spider-Man and change his pose to the fighting stance.

The woman in image 2 adopts the pose from image 1.

The woman in image 2 adopts the pose from image 1.

Change the background to the seaside

Change the background to the seaside

The girl in picture 1 poses according to the posture in picture 2.

The girl in picture 1 poses according to the posture in picture 2.

Put a Santa hat on the puppy

Put a Santa hat on the puppy

Related Models

README

Qwen-Image-Edit-Plus (20B, MMDiT)

A next-gen image editing model built on Qwen-Image 20B. It delivers precise bilingual (Chinese & English) text editing, supports both appearance-level and semantic-level edits, and preserves the original style.

Why choose this?

  • Dual-mode editing

  • Appearance editing: add/remove/modify elements while keeping all other regions pixel-accurate and unchanged.

  • Semantic editing: higher-level changes—IP creation, pose/rotation, style transfer—allow global pixel updates while keeping semantic intent.

  • Precise text editing (CN/EN) Edit on-image text directly (add/delete/replace) while retaining the original font, size, kerning, and style.

  • Style preservation Maintains palette, lighting, brushwork, and overall look even under substantial edits.

  • Strong benchmark results Evaluated across multiple public editing benchmarks with state-of-the-art performance.

Designed for

  • Design & Marketing teams – Rapid visual iterations, brand-safe edits, and multilingual comps.
  • E-commerce & Social – Clean product touch-ups, quick hero swaps, localized text.
  • Creators & Studios – Concepting, IP style moves, pose/angle changes without repainting.

Example prompts

  • Appearance (CN): 在桌面右上角添加一杯拿铁,不改变其他区域。
  • Semantic (EN): Turn the product into a cyberpunk style while keeping the brand logo and layout consistent.
  • Text edit (EN): Replace the headline "Summer Sale" with "Autumn Sale" and keep the same font and size.

Pricing

Just $0.02 per image !!!

How to use

  1. Upload the source image.
  2. Write the prompt (Chinese or English).
  3. Generate — results arrive in moments.
  4. Output Formats - JPG / PNG / WEBP
  5. Review & iterate — keep the same seed for exact reproduction, or change it for A/B comparisons.

Note

If you did not upload the image locally, please ensure that the image URL is accessible! A successfully accessible image will display a preview in the interface.

Recommended Resolutions

Aspect RatioExact (W×H)Exact PixelsRounded (W×H, ÷64)Rounded Pixels
1:11448 × 14482,096,7041408 × 14081,982,464
3:21773 × 11822,095,6861728 × 11521,990,656
4:31672 × 12542,096,6881664 × 12162,023,424
16:91936 × 10892,108,3041920 × 10882,088,960
21:92212 × 9482,096,9762176 × 9602,088,960
1:11024 × 10241,048,5761024 × 10241,048,576
3:21254 × 8361,048,3441216 × 8321,011,712
4:31182 × 8871,048,4341152 × 8961,032,192
16:91365 × 7681,048,3201344 × 7681,032,192
21:91564 × 6701,047,8801536 × 640983,040
1:1323 × 323104,329320 × 320102,400
3:2397 × 264104,808384 × 25698,304
4:3374 × 280104,720448 × 320143,360
16:9432 × 243104,976448 × 256114,688
21:9495 × 212104,940576 × 256147,456
Accessibility:This website uses AI models provided by third parties.

Qwen Image Edit Plus API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/qwen-image/edit-plus with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Qwen Image Edit Plus below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/qwen-image/edit-plus" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "seed": -1,
    "output_format": "jpeg",
    "enable_base64_output": false,
    "enable_sync_mode": false
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("wavespeed-ai/qwen-image/edit-plus", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "seed": -1,
        "output_format": "jpeg",
        "enable_base64_output": false,
        "enable_sync_mode": false
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "wavespeed-ai/qwen-image/edit-plus",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "seed": -1,
    "output_format": "jpeg",
    "enable_base64_output": false,
    "enable_sync_mode": false
}
)

print(output["outputs"][0])  # → URL of the generated output

Qwen Image Edit Plus API — Frequently asked questions

What is the Qwen Image Edit Plus API?

Qwen Image Edit Plus is a WaveSpeedAI model for image editing, exposed as a REST API on WaveSpeedAI. Qwen-Image-Edit-Plus (2509) is a 20B MMDiT image editor with multi-image editing, single-image consistency and native ControlNet support. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Qwen Image Edit Plus API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/qwen-image-edit-plus.

How much does Qwen Image Edit Plus cost per run?

Qwen Image Edit Plus starts at $0.020 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Qwen Image Edit Plus accept?

Key inputs: `prompt`, `images`, `seed`, `enable_base64_output`, `enable_sync_mode`, `output_format`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/qwen-image-edit-plus.

How long does Qwen Image Edit Plus take to generate?

Average end-to-end generation time on WaveSpeedAI is around 8 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.

Can I use Qwen Image Edit Plus outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.