---
title: Qwen-Image-2.0-Pro | Runware Docs
url: https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro
description: Enhanced image generation and precision editing for professional workflows
---
# Qwen-Image-2.0-Pro

Qwen-Image-2.0-Pro builds on Qwen-Image-2.0 with optimized visual fidelity, improved layout and typography handling, and advanced editing control for professional creative and enterprise applications. It delivers richer detail, more accurate text and iconography rendering, and refined editing semantics across a wide range of visual styles, making it suitable for advertising, branding, design systems, and high-impact visual content.

- **ID**: `alibaba:qwen-image@2.0-pro`
- **Status**: live
- **Creator**: Alibaba
- **Release Date**: February 10, 2026
- **Capabilities**: Text to Image, Image to Image, Image Editing

## Compatibility & Validation

`inputs.referenceImages` cannot be used with `negativePrompt`.

---

`width` and `height` must be used together.

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `imageInference`

Identifier for the type of task being performed

### [taskUUID](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID v4 identifier for tracking tasks and matching async responses. Must be unique per task.

### [outputType](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-outputtype)

- **Type**: `string`
- **Default**: `URL`

Image output type.

**Allowed values**: `URL` `base64Data` `dataURI`

### [outputFormat](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-outputformat)

- **Type**: `string`
- **Default**: `JPG`

Specifies the file format of the generated output. The available values depend on the task type and the specific model's capabilities.

- \`JPG\`: Best for photorealistic images with smaller file sizes (no transparency).
- \`PNG\`: Lossless compression, supports high quality and transparency (alpha channel).
- \`WEBP\`: Modern format providing superior compression and transparency support.

> [!NOTE]
> \*\*Transparency\*\*: If you are using features like background removal or LayerDiffuse that require transparency, you must select a format that supports an alpha channel (e.g., \`PNG\`, \`WEBP\`, \`TIFF\`). \`JPG\` does not support transparency.

**Allowed values**: `JPG` `PNG` `WEBP`

### [outputQuality](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-outputquality)

- **Type**: `integer`
- **Min**: `20`
- **Max**: `99`
- **Default**: `95`

Compression quality of the output. Higher values preserve quality but increase file size.

### [webhookURL](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-webhookurl)

- **Type**: `string`
- **Format**: `URI`

Specifies a webhook URL where JSON responses will be sent via HTTP POST when generation tasks complete. For batch requests with multiple results, each completed item triggers a separate webhook call as it becomes available.

**Learn more** (1 resource):

- [Webhooks](https://runware.ai/docs/platform/webhooks) (platform)

### [deliveryMethod](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-deliverymethod)

- **Type**: `string`
- **Default**: `sync`

Determines how the API delivers task results.

**Allowed values**:

- `sync` Returns complete results directly in the API response.
- `async` Returns an immediate acknowledgment with the task UUID. Poll for results using getResponse.

**Learn more** (1 resource):

- [Task Polling](https://runware.ai/docs/platform/task-polling) (platform)

### [uploadEndpoint](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-uploadendpoint)

- **Type**: `string`
- **Format**: `URI`

Specifies a URL where the generated content will be automatically uploaded using the HTTP PUT method. The raw binary data of the media file is sent directly as the request body. For secure uploads to cloud storage, use presigned URLs that include temporary authentication credentials.

**Common use cases:**

- **Cloud storage**: Upload directly to S3 buckets, Google Cloud Storage, or Azure Blob Storage using presigned URLs.
- **CDN integration**: Upload to content delivery networks for immediate distribution.

```text
// S3 presigned URL for secure upload
https://your-bucket.s3.amazonaws.com/generated/content.mp4?X-Amz-Signature=abc123&X-Amz-Expires=3600

// Google Cloud Storage presigned URL
https://storage.googleapis.com/your-bucket/content.jpg?X-Goog-Signature=xyz789

// Custom storage endpoint
https://storage.example.com/uploads/generated-image.jpg
```

The content data will be sent as the request body to the specified URL when generation is complete.

### [safety](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-safety)

- **Path**: `safety.checkContent`
- **Type**: `object (2 properties)`

Content safety checking configuration for image generation.

#### [checkContent](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-safety-checkcontent)

- **Path**: `safety.checkContent`
- **Type**: `boolean`
- **Default**: `false`

Enable or disable content safety checking. When enabled, defaults to `fast` mode.

#### [mode](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-safety-mode)

- **Path**: `safety.mode`
- **Type**: `string`
- **Default**: `none`

Safety checking mode for image generation.

**Allowed values**:

- `none` Disables checking.
- `fast` Performs a single check.

### [ttl](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-ttl)

- **Type**: `integer`
- **Min**: `60`

Time-to-live (TTL) in seconds for generated content. Only applies when `outputType` is `URL`.

### [includeCost](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-includecost)

- **Type**: `boolean`
- **Default**: `false`

Include task cost in the response.

### [numberResults](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-numberresults)

- **Type**: `integer`
- **Min**: `1`
- **Max**: `20`
- **Default**: `1`

Number of results to generate. Each result uses a different seed, producing variations of the same parameters.

**Inputs**

Input resources for the task (images, audio, etc). These must be nested inside the \`inputs\` object.

### [referenceImages](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-inputs-referenceimages)

- **Path**: `inputs.referenceImages`
- **Type**: `array of strings`

List of reference images (UUID, URL, Data URI, or Base64).

**Generation Parameters**

Core parameters for controlling the generated content.

### [model](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `alibaba:qwen-image@2.0-pro`

Identifier of the model to use for generation.

**Learn more** (3 resources):

- [Text To Image: Model Selection The Foundation Of Generation](https://runware.ai/docs/guides/text-to-image#model-selection-the-foundation-of-generation) (guide)
- [Image Inpainting: Model Specialized Inpainting Models](https://runware.ai/docs/guides/image-inpainting#model-specialized-inpainting-models) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [positivePrompt](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-positiveprompt)

- **Type**: `string`
- **Required**: true
- **Min**: `2`
- **Max**: `2000`

Text prompt describing elements to include in the generated output.

**Learn more** (2 resources):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [negativePrompt](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-negativeprompt)

- **Type**: `string`
- **Min**: `2`
- **Max**: `500`

Prompt to guide what to exclude from generation. Ignored when guidance is disabled (CFGScale ≤ 1).

**Learn more** (1 resource):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)

### [width](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-width)

- **Type**: `integer`
- **Step**: `1`

Width of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

### [height](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-height)

- **Type**: `integer`
- **Step**: `1`

Height of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

**Provider Settings**

Parameters specific to this model provider. These must be nested inside the \`providerSettings.alibaba\` object.

### [promptExtend](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#request-providersettings-alibaba-promptextend)

- **Path**: `providerSettings.alibaba.promptExtend`
- **Type**: `boolean`
- **Default**: `true`

Enable LLM-based prompt rewriting to expand and clarify inputs. Affects reproducibility.

## Response Parameters

### [taskType](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `imageInference`

Type of the task.

### [taskUUID](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the task.

### [imageUUID](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-imageuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the output image.

### [imageURL](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-imageurl)

- **Type**: `string`
- **Format**: `URI`

URL of the output image.

### [imageBase64Data](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-imagebase64data)

- **Type**: `string`

Base64-encoded image data.

### [imageDataURI](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-imagedatauri)

- **Type**: `string`
- **Format**: `URI`

Data URI of the output image.

### [seed](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-seed)

- **Type**: `integer`

The seed used for generation. If none was provided, shows the randomly generated seed.

### [NSFWContent](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-nsfwcontent)

- **Type**: `boolean`

Flag indicating if NSFW content was detected.

### [cost](https://runware.ai/docs/models/alibaba-qwen-image-2-0-pro#response-cost)

- **Type**: `float`

Task cost in USD. Present when `includeCost` is set to `true` in the request.

## Examples

### Luxury Perfume Billboard Mockup (Image Editing)

![Luxury Perfume Billboard Mockup](https://assets.runware.ai/examples/alibaba-qwen-image-2-0-pro/77b0e3fc-d309-4f6b-821d-eb178ed88b9d.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "c9ce25bb-094e-4049-9af0-b2aa2f174ac0",
  "referenceImages": [
    "https://assets.runware.ai/assets/inputs/71e25362-7660-4157-974a-0d8274e56618.jpg"
  ],
  "model": "alibaba:qwen-image@2.0-pro",
  "positivePrompt": "Edit the reference image by transforming the empty billboard into a premium fragrance advertisement for a fictional brand named 'LUNE NOIRE'. Preserve the original street perspective, lighting direction, weather mood, and realism of the surrounding environment. Design a sophisticated billboard featuring a tall faceted black-glass perfume bottle with a brushed gold cap, centered against a deep midnight-indigo gradient with subtle moonlit haze and delicate silver dust particles. Add elegant, highly legible typography that reads: 'LUNE NOIRE' as the main brand name, and beneath it in smaller text: 'Midnight Bloom Eau de Parfum'. Include a minimal gold crescent-moon icon above the brand name. The layout should feel like a real luxury fashion campaign: spacious negative space, strong visual hierarchy, clean alignment, refined editorial styling, photorealistic print texture on the billboard surface, and believable integration into the scene. The final image should look like a high-end cosmetic campaign photographed for a global brand launch.",
  "negativePrompt": "distorted text, misspelled words, extra bottles, cluttered layout, low resolution, cartoon style, oversaturated colors, warped billboard, floating elements, bad perspective, blurry product, cheap design",
  "width": 1536,
  "height": 1024,
  "providerSettings": {
    "alibaba": {
      "promptExtend": false
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "c9ce25bb-094e-4049-9af0-b2aa2f174ac0",
  "imageUUID": "8071e34d-a7f5-4777-b8b6-9656df46513b",
  "imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/8071e34d-a7f5-4777-b8b6-9656df46513b.jpg",
  "seed": 1196265337,
  "cost": 0.075
}
```

---

### Luxury Skincare Poster (Text to Image)

![Luxury Skincare Poster](https://assets.runware.ai/examples/alibaba-qwen-image-2-0-pro/04d1e10a-b434-401b-b5f3-882ae3687e8d.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "6750b3cf-7a7c-4739-b336-48a759010692",
  "model": "alibaba:qwen-image@2.0-pro",
  "positivePrompt": "A premium beauty advertising poster for a fictional skincare brand called LUMIERE. Centered frosted glass serum bottle with a silver dropper on a reflective marble pedestal, surrounded by soft white orchids, dew drops, and a subtle halo of light. Clean luxury studio lighting, creamy ivory and champagne color palette, ultra-detailed product photography aesthetic, refined shadows, elegant composition with generous negative space. Include sophisticated readable packaging text on the bottle: 'LUMIERE', 'Radiance Renewal Serum', and '30 ml'. Add tasteful poster headline typography near the top: 'Glow, Refined.' and small subheading near the bottom: 'Clinical hydration with a luminous finish.' High-end editorial design, immaculate layout, crisp typography, realistic materials, premium cosmetics campaign.",
  "negativePrompt": "blurry text, distorted bottle, extra objects, cluttered layout, misspelled words, low resolution, warped label, duplicated flowers, harsh shadows, cartoon style",
  "width": 1024,
  "height": 1536,
  "providerSettings": {
    "alibaba": {
      "promptExtend": true
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "6750b3cf-7a7c-4739-b336-48a759010692",
  "imageUUID": "e0784859-029b-4cc1-91e8-d8e1d57fd34e",
  "imageURL": "https://im.runware.ai/image/os/a07d11/ws/3/ii/e0784859-029b-4cc1-91e8-d8e1d57fd34e.jpg",
  "seed": 1702113700,
  "cost": 0.075
}
```

---

### Art Deco Perfume Poster (Text to Image)

![Art Deco Perfume Poster](https://assets.runware.ai/examples/alibaba-qwen-image-2-0-pro/633ab343-010a-4ec7-8734-531d4ec9e005.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "e69ac5cd-7ac2-466c-85fb-ff69f75397d4",
  "model": "alibaba:qwen-image@2.0-pro",
  "positivePrompt": "Luxury Art Deco perfume advertisement poster, centered crystal perfume bottle with a faceted stopper on a black lacquer pedestal, glowing amber liquid, symmetrical composition, brushed gold geometric frame, deep emerald and champagne palette, subtle peacock-feather motifs, soft theatrical spotlight, polished marble floor reflections, floating gold dust, ultra-detailed premium packaging aesthetic. Include elegant, highly legible poster typography integrated into the design: at the top in large refined serif letters, 'AURELIS NOIR'; below it in smaller caps, 'PARFUM EXTRÊME'; near the bottom, 'Midnight Bloom Collection'; and a small circular seal icon reading 'EST. 1928'. Clean kerning, accurate lettering, believable print layout, magazine-quality luxury branding, sharp focus, rich detail, sophisticated and opulent mood.",
  "negativePrompt": "blurry text, misspelled words, distorted bottle, extra objects, cluttered layout, low contrast, warped typography, watermark, cropped product, messy reflections",
  "width": 1024,
  "height": 1536,
  "providerSettings": {
    "alibaba": {
      "promptExtend": false
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "e69ac5cd-7ac2-466c-85fb-ff69f75397d4",
  "imageUUID": "0aa1b545-ac21-4397-a249-ee6149ab66c1",
  "imageURL": "https://im.runware.ai/image/os/a20d05/ws/3/ii/0aa1b545-ac21-4397-a249-ee6149ab66c1.jpg",
  "seed": 1138524859,
  "cost": 0.075
}
```

---

### Luxury Perfume Billboard (Text to Image)

![Luxury Perfume Billboard](https://assets.runware.ai/examples/alibaba-qwen-image-2-0-pro/699ee21c-c272-425d-a0a2-7eb8c065e206.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "e827fd51-e73e-46d2-b675-ef131fc88602",
  "model": "alibaba:qwen-image@2.0-pro",
  "positivePrompt": "A premium fashion billboard advertisement for a fictional luxury perfume called 'LUMIÈRE NOIR'. Centered crystal perfume bottle with faceted glass, black lacquer cap, subtle gold accents, resting on a glossy obsidian pedestal. Dramatic studio lighting, soft volumetric glow, floating particles, rich shadows, tasteful reflections, cinematic high-end product photography. Clean editorial layout with elegant typography: large headline at top reading 'LUMIÈRE NOIR', smaller tagline below reading 'The Night, Distilled', and a minimal footer line reading 'EAU DE PARFUM'. Sophisticated black, champagne gold, and deep amber color palette. Ultra-detailed label design, accurate lettering, luxurious branding, magazine-quality composition, premium commercial aesthetic, balanced negative space, sharp focus, realistic materials, refined art direction.",
  "negativePrompt": "misspelled text, distorted bottle, duplicate objects, cluttered layout, warped typography, low contrast, blurry image, low detail, extra props, watermark, logo errors",
  "width": 1024,
  "height": 1536,
  "providerSettings": {
    "alibaba": {
      "promptExtend": true
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "e827fd51-e73e-46d2-b675-ef131fc88602",
  "imageUUID": "ad675c87-ec23-4c40-9d4d-d95ab38d9bbe",
  "imageURL": "https://im.runware.ai/image/os/a11d13/ws/3/ii/ad675c87-ec23-4c40-9d4d-d95ab38d9bbe.jpg",
  "seed": 1806112824,
  "cost": 0.075
}
```