MODEL IDalibaba:qwen-image-edit@2511
live

Qwen-Image-Edit-2511

Alibaba
by Alibaba

Qwen-Image-Edit-2511 is an image editing model that applies text instructions to modify existing images with precise semantic and appearance control. It preserves visual consistency during edits, supports multi-person and character consistency, and integrates selected features and extensions that enhance object manipulation, geometric reasoning, and layout coherence.

Qwen-Image-Edit-2511
reference-to-image

Adaptive Rain Cape Virtual Try-On

Adaptive Rain Cape Virtual Try-On

Create a polished square ecommerce lifestyle photograph using reference image 1 as the primary composition and person, and reference image 2 as the exact garment reference. Dress the woman in reference image 1 in the mustard-yellow adaptive wheelchair rain cape from reference image 2. Preserve her identity, facial features, skin tone, short curly hair, expression, body proportions, seated pose, hand positions, and wheelchair exactly. Preserve the wheelchair frame, wheels, push rims, cushion, footrest geometry, and perspective without redesigning or obscuring them unnecessarily. Fit the cape convincingly to her seated body and wheelchair posture. Reproduce the garment's mustard color, matte waterproof texture, hood, high collar, asymmetric front zipper, reflective piping, wrist loops, side openings, roomy lap panel, and extended front hem. The fabric should drape naturally over her shoulders, arms, torso, and knees, with believable folds and tension around the elbows and lap. Keep her hands visible and anatomically correct, passing naturally through the intended openings. Do not turn the cape into a standard poncho, coat, blanket, or dress. Retain the modern library plaza and original camera angle from reference image 1. Enhance the atmosphere into a refined rainy-day mobility campaign: cool cyan-gray overcast light, wet paving with restrained reflections, a few fine raindrops visible against the darker background, and subtle warm light through distant library windows. The mustard cape should provide a bold but realistic color contrast. Natural photographic detail, premium editorial accessibility campaign, authentic skin texture, accurate wheelchair mechanics, restrained color grading, sharp subject with gently softened architectural background. No text, logos, labels, signage, borders, collage layout, or interface elements.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'alibaba:qwen-image-edit@2511',
  positivePrompt: 'Create a polished square ecommerce lifestyle photograph using reference image 1 as the primary composition and person, and reference image 2 as the exact garment reference. Dress the woman in reference image 1 in the mustard-yellow adaptive wheelchair rain cape from reference image 2. Preserve her identity, facial features, skin tone, short curly hair, expression, body proportions, seated pose, hand positions, and wheelchair exactly. Preserve the wheelchair frame, wheels, push rims, cushion, footrest geometry, and perspective without redesigning or obscuring them unnecessarily.\n\nFit the cape convincingly to her seated body and wheelchair posture. Reproduce the garment\'s mustard color, matte waterproof texture, hood, high collar, asymmetric front zipper, reflective piping, wrist loops, side openings, roomy lap panel, and extended front hem. The fabric should drape naturally over her shoulders, arms, torso, and knees, with believable folds and tension around the elbows and lap. Keep her hands visible and anatomically correct, passing naturally through the intended openings. Do not turn the cape into a standard poncho, coat, blanket, or dress.\n\nRetain the modern library plaza and original camera angle from reference image 1. Enhance the atmosphere into a refined rainy-day mobility campaign: cool cyan-gray overcast light, wet paving with restrained reflections, a few fine raindrops visible against the darker background, and subtle warm light through distant library windows. The mustard cape should provide a bold but realistic color contrast. Natural photographic detail, premium editorial accessibility campaign, authentic skin texture, accurate wheelchair mechanics, restrained color grading, sharp subject with gently softened architectural background. No text, logos, labels, signage, borders, collage layout, or interface elements.',
  negativePrompt: 'Altered identity, different person, changed hairstyle, standing pose, distorted wheelchair, missing wheels, extra wheels, malformed hands, hidden hands, extra fingers, duplicated limbs, floating fabric, impossible garment openings, generic poncho, glossy plastic fabric, invented logos, text, watermark, product cutout, split screen, collage, excessive rain, dramatic fantasy lighting, cartoon, illustration, app interface',
  width: 1024,
  height: 1024,
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/9c741d5f-9df5-4ab7-8c9d-26093e20a9cb.jpg',
      'https://assets.runware.ai/assets/inputs/fa2fa085-f1a8-45a0-bb3a-6b2ec977fc8e.jpg'
    ]
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "alibaba:qwen-image-edit@2511",
            "positivePrompt": "Create a polished square ecommerce lifestyle photograph using reference image 1 as the primary composition and person, and reference image 2 as the exact garment reference. Dress the woman in reference image 1 in the mustard-yellow adaptive wheelchair rain cape from reference image 2. Preserve her identity, facial features, skin tone, short curly hair, expression, body proportions, seated pose, hand positions, and wheelchair exactly. Preserve the wheelchair frame, wheels, push rims, cushion, footrest geometry, and perspective without redesigning or obscuring them unnecessarily.\n\nFit the cape convincingly to her seated body and wheelchair posture. Reproduce the garment's mustard color, matte waterproof texture, hood, high collar, asymmetric front zipper, reflective piping, wrist loops, side openings, roomy lap panel, and extended front hem. The fabric should drape naturally over her shoulders, arms, torso, and knees, with believable folds and tension around the elbows and lap. Keep her hands visible and anatomically correct, passing naturally through the intended openings. Do not turn the cape into a standard poncho, coat, blanket, or dress.\n\nRetain the modern library plaza and original camera angle from reference image 1. Enhance the atmosphere into a refined rainy-day mobility campaign: cool cyan-gray overcast light, wet paving with restrained reflections, a few fine raindrops visible against the darker background, and subtle warm light through distant library windows. The mustard cape should provide a bold but realistic color contrast. Natural photographic detail, premium editorial accessibility campaign, authentic skin texture, accurate wheelchair mechanics, restrained color grading, sharp subject with gently softened architectural background. No text, logos, labels, signage, borders, collage layout, or interface elements.",
            "negativePrompt": "Altered identity, different person, changed hairstyle, standing pose, distorted wheelchair, missing wheels, extra wheels, malformed hands, hidden hands, extra fingers, duplicated limbs, floating fabric, impossible garment openings, generic poncho, glossy plastic fabric, invented logos, text, watermark, product cutout, split screen, collage, excessive rain, dramatic fantasy lighting, cartoon, illustration, app interface",
            "width": 1024,
            "height": 1024,
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/9c741d5f-9df5-4ab7-8c9d-26093e20a9cb.jpg",
                    "https://assets.runware.ai/assets/inputs/fa2fa085-f1a8-45a0-bb3a-6b2ec977fc8e.jpg"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "6ab27ce5-2bbc-41c2-be07-4f2123341c56",
      "model": "alibaba:qwen-image-edit@2511",
      "positivePrompt": "Create a polished square ecommerce lifestyle photograph using reference image 1 as the primary composition and person, and reference image 2 as the exact garment reference. Dress the woman in reference image 1 in the mustard-yellow adaptive wheelchair rain cape from reference image 2. Preserve her identity, facial features, skin tone, short curly hair, expression, body proportions, seated pose, hand positions, and wheelchair exactly. Preserve the wheelchair frame, wheels, push rims, cushion, footrest geometry, and perspective without redesigning or obscuring them unnecessarily.\n\nFit the cape convincingly to her seated body and wheelchair posture. Reproduce the garment's mustard color, matte waterproof texture, hood, high collar, asymmetric front zipper, reflective piping, wrist loops, side openings, roomy lap panel, and extended front hem. The fabric should drape naturally over her shoulders, arms, torso, and knees, with believable folds and tension around the elbows and lap. Keep her hands visible and anatomically correct, passing naturally through the intended openings. Do not turn the cape into a standard poncho, coat, blanket, or dress.\n\nRetain the modern library plaza and original camera angle from reference image 1. Enhance the atmosphere into a refined rainy-day mobility campaign: cool cyan-gray overcast light, wet paving with restrained reflections, a few fine raindrops visible against the darker background, and subtle warm light through distant library windows. The mustard cape should provide a bold but realistic color contrast. Natural photographic detail, premium editorial accessibility campaign, authentic skin texture, accurate wheelchair mechanics, restrained color grading, sharp subject with gently softened architectural background. No text, logos, labels, signage, borders, collage layout, or interface elements.",
      "negativePrompt": "Altered identity, different person, changed hairstyle, standing pose, distorted wheelchair, missing wheels, extra wheels, malformed hands, hidden hands, extra fingers, duplicated limbs, floating fabric, impossible garment openings, generic poncho, glossy plastic fabric, invented logos, text, watermark, product cutout, split screen, collage, excessive rain, dramatic fantasy lighting, cartoon, illustration, app interface",
      "width": 1024,
      "height": 1024,
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/9c741d5f-9df5-4ab7-8c9d-26093e20a9cb.jpg",
          "https://assets.runware.ai/assets/inputs/fa2fa085-f1a8-45a0-bb3a-6b2ec977fc8e.jpg"
        ]
      }
    }
  ]'
runware run alibaba:qwen-image-edit@2511 \
  positivePrompt="Create a polished square ecommerce lifestyle photograph using reference image 1 as the primary composition and person, and reference image 2 as the exact garment reference. Dress the woman in reference image 1 in the mustard-yellow adaptive wheelchair rain cape from reference image 2. Preserve her identity, facial features, skin tone, short curly hair, expression, body proportions, seated pose, hand positions, and wheelchair exactly. Preserve the wheelchair frame, wheels, push rims, cushion, footrest geometry, and perspective without redesigning or obscuring them unnecessarily.

Fit the cape convincingly to her seated body and wheelchair posture. Reproduce the garment's mustard color, matte waterproof texture, hood, high collar, asymmetric front zipper, reflective piping, wrist loops, side openings, roomy lap panel, and extended front hem. The fabric should drape naturally over her shoulders, arms, torso, and knees, with believable folds and tension around the elbows and lap. Keep her hands visible and anatomically correct, passing naturally through the intended openings. Do not turn the cape into a standard poncho, coat, blanket, or dress.

Retain the modern library plaza and original camera angle from reference image 1. Enhance the atmosphere into a refined rainy-day mobility campaign: cool cyan-gray overcast light, wet paving with restrained reflections, a few fine raindrops visible against the darker background, and subtle warm light through distant library windows. The mustard cape should provide a bold but realistic color contrast. Natural photographic detail, premium editorial accessibility campaign, authentic skin texture, accurate wheelchair mechanics, restrained color grading, sharp subject with gently softened architectural background. No text, logos, labels, signage, borders, collage layout, or interface elements." \
  negativePrompt="Altered identity, different person, changed hairstyle, standing pose, distorted wheelchair, missing wheels, extra wheels, malformed hands, hidden hands, extra fingers, duplicated limbs, floating fabric, impossible garment openings, generic poncho, glossy plastic fabric, invented logos, text, watermark, product cutout, split screen, collage, excessive rain, dramatic fantasy lighting, cartoon, illustration, app interface" \
  width=1024 \
  height=1024 \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/9c741d5f-9df5-4ab7-8c9d-26093e20a9cb.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/fa2fa085-f1a8-45a0-bb3a-6b2ec977fc8e.jpg
{
  "taskType": "imageInference",
  "taskUUID": "6ab27ce5-2bbc-41c2-be07-4f2123341c56",
  "model": "alibaba:qwen-image-edit@2511",
  "positivePrompt": "Create a polished square ecommerce lifestyle photograph using reference image 1 as the primary composition and person, and reference image 2 as the exact garment reference. Dress the woman in reference image 1 in the mustard-yellow adaptive wheelchair rain cape from reference image 2. Preserve her identity, facial features, skin tone, short curly hair, expression, body proportions, seated pose, hand positions, and wheelchair exactly. Preserve the wheelchair frame, wheels, push rims, cushion, footrest geometry, and perspective without redesigning or obscuring them unnecessarily.\n\nFit the cape convincingly to her seated body and wheelchair posture. Reproduce the garment's mustard color, matte waterproof texture, hood, high collar, asymmetric front zipper, reflective piping, wrist loops, side openings, roomy lap panel, and extended front hem. The fabric should drape naturally over her shoulders, arms, torso, and knees, with believable folds and tension around the elbows and lap. Keep her hands visible and anatomically correct, passing naturally through the intended openings. Do not turn the cape into a standard poncho, coat, blanket, or dress.\n\nRetain the modern library plaza and original camera angle from reference image 1. Enhance the atmosphere into a refined rainy-day mobility campaign: cool cyan-gray overcast light, wet paving with restrained reflections, a few fine raindrops visible against the darker background, and subtle warm light through distant library windows. The mustard cape should provide a bold but realistic color contrast. Natural photographic detail, premium editorial accessibility campaign, authentic skin texture, accurate wheelchair mechanics, restrained color grading, sharp subject with gently softened architectural background. No text, logos, labels, signage, borders, collage layout, or interface elements.",
  "negativePrompt": "Altered identity, different person, changed hairstyle, standing pose, distorted wheelchair, missing wheels, extra wheels, malformed hands, hidden hands, extra fingers, duplicated limbs, floating fabric, impossible garment openings, generic poncho, glossy plastic fabric, invented logos, text, watermark, product cutout, split screen, collage, excessive rain, dramatic fantasy lighting, cartoon, illustration, app interface",
  "width": 1024,
  "height": 1024,
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/9c741d5f-9df5-4ab7-8c9d-26093e20a9cb.jpg",
      "https://assets.runware.ai/assets/inputs/fa2fa085-f1a8-45a0-bb3a-6b2ec977fc8e.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "6ab27ce5-2bbc-41c2-be07-4f2123341c56",
  "imageUUID": "86156c5d-1039-4d93-9bef-0f3745944b76",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/86156c5d-1039-4d93-9bef-0f3745944b76.jpg",
  "seed": 1272515179,
  "cost": 0.01078
}
reference-to-image

Handheld Marine Radio Colorway

Handheld Marine Radio Colorway

Create a production-ready product colorway edit from the reference image. Recolor only the vivid safety-orange rigid outer casing panels of the handheld marine radio to a sophisticated muted sea-glass mint green with a fine satin polymer finish. Apply the new color evenly and realistically across every originally orange casing surface, including narrow edges visible in perspective, while retaining natural highlights, molded contours, seams, surface texture, and contact shadows. Preserve the radio's exact shape, dimensions, three-quarter angle, placement, scale, and composition. Do not alter the charcoal-black rubber grips, antenna, rotary knobs, inactive dark screen, speaker grille, buttons, yellow emergency key, stainless contacts, molded icons, or any other functional detail. Keep the original pale warm-gray seamless background, soft grounding shadow, clean studio lighting, sharp focus, and premium technical ecommerce photography. The result should look like an authentic manufacturer-approved sea-glass colorway photograph of the same physical product, not a redesign.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'alibaba:qwen-image-edit@2511',
  positivePrompt: 'Create a production-ready product colorway edit from the reference image. Recolor only the vivid safety-orange rigid outer casing panels of the handheld marine radio to a sophisticated muted sea-glass mint green with a fine satin polymer finish. Apply the new color evenly and realistically across every originally orange casing surface, including narrow edges visible in perspective, while retaining natural highlights, molded contours, seams, surface texture, and contact shadows. Preserve the radio\'s exact shape, dimensions, three-quarter angle, placement, scale, and composition. Do not alter the charcoal-black rubber grips, antenna, rotary knobs, inactive dark screen, speaker grille, buttons, yellow emergency key, stainless contacts, molded icons, or any other functional detail. Keep the original pale warm-gray seamless background, soft grounding shadow, clean studio lighting, sharp focus, and premium technical ecommerce photography. The result should look like an authentic manufacturer-approved sea-glass colorway photograph of the same physical product, not a redesign.',
  width: 1024,
  height: 1024,
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/57781ce5-05f3-447e-8733-85e577c6be68.jpg'
    ]
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "alibaba:qwen-image-edit@2511",
            "positivePrompt": "Create a production-ready product colorway edit from the reference image. Recolor only the vivid safety-orange rigid outer casing panels of the handheld marine radio to a sophisticated muted sea-glass mint green with a fine satin polymer finish. Apply the new color evenly and realistically across every originally orange casing surface, including narrow edges visible in perspective, while retaining natural highlights, molded contours, seams, surface texture, and contact shadows. Preserve the radio's exact shape, dimensions, three-quarter angle, placement, scale, and composition. Do not alter the charcoal-black rubber grips, antenna, rotary knobs, inactive dark screen, speaker grille, buttons, yellow emergency key, stainless contacts, molded icons, or any other functional detail. Keep the original pale warm-gray seamless background, soft grounding shadow, clean studio lighting, sharp focus, and premium technical ecommerce photography. The result should look like an authentic manufacturer-approved sea-glass colorway photograph of the same physical product, not a redesign.",
            "width": 1024,
            "height": 1024,
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/57781ce5-05f3-447e-8733-85e577c6be68.jpg"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "7a53a679-a229-4f64-bbe6-c1d7c7d6d899",
      "model": "alibaba:qwen-image-edit@2511",
      "positivePrompt": "Create a production-ready product colorway edit from the reference image. Recolor only the vivid safety-orange rigid outer casing panels of the handheld marine radio to a sophisticated muted sea-glass mint green with a fine satin polymer finish. Apply the new color evenly and realistically across every originally orange casing surface, including narrow edges visible in perspective, while retaining natural highlights, molded contours, seams, surface texture, and contact shadows. Preserve the radio's exact shape, dimensions, three-quarter angle, placement, scale, and composition. Do not alter the charcoal-black rubber grips, antenna, rotary knobs, inactive dark screen, speaker grille, buttons, yellow emergency key, stainless contacts, molded icons, or any other functional detail. Keep the original pale warm-gray seamless background, soft grounding shadow, clean studio lighting, sharp focus, and premium technical ecommerce photography. The result should look like an authentic manufacturer-approved sea-glass colorway photograph of the same physical product, not a redesign.",
      "width": 1024,
      "height": 1024,
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/57781ce5-05f3-447e-8733-85e577c6be68.jpg"
        ]
      }
    }
  ]'
runware run alibaba:qwen-image-edit@2511 \
  positivePrompt="Create a production-ready product colorway edit from the reference image. Recolor only the vivid safety-orange rigid outer casing panels of the handheld marine radio to a sophisticated muted sea-glass mint green with a fine satin polymer finish. Apply the new color evenly and realistically across every originally orange casing surface, including narrow edges visible in perspective, while retaining natural highlights, molded contours, seams, surface texture, and contact shadows. Preserve the radio's exact shape, dimensions, three-quarter angle, placement, scale, and composition. Do not alter the charcoal-black rubber grips, antenna, rotary knobs, inactive dark screen, speaker grille, buttons, yellow emergency key, stainless contacts, molded icons, or any other functional detail. Keep the original pale warm-gray seamless background, soft grounding shadow, clean studio lighting, sharp focus, and premium technical ecommerce photography. The result should look like an authentic manufacturer-approved sea-glass colorway photograph of the same physical product, not a redesign." \
  width=1024 \
  height=1024 \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/57781ce5-05f3-447e-8733-85e577c6be68.jpg
{
  "taskType": "imageInference",
  "taskUUID": "7a53a679-a229-4f64-bbe6-c1d7c7d6d899",
  "model": "alibaba:qwen-image-edit@2511",
  "positivePrompt": "Create a production-ready product colorway edit from the reference image. Recolor only the vivid safety-orange rigid outer casing panels of the handheld marine radio to a sophisticated muted sea-glass mint green with a fine satin polymer finish. Apply the new color evenly and realistically across every originally orange casing surface, including narrow edges visible in perspective, while retaining natural highlights, molded contours, seams, surface texture, and contact shadows. Preserve the radio's exact shape, dimensions, three-quarter angle, placement, scale, and composition. Do not alter the charcoal-black rubber grips, antenna, rotary knobs, inactive dark screen, speaker grille, buttons, yellow emergency key, stainless contacts, molded icons, or any other functional detail. Keep the original pale warm-gray seamless background, soft grounding shadow, clean studio lighting, sharp focus, and premium technical ecommerce photography. The result should look like an authentic manufacturer-approved sea-glass colorway photograph of the same physical product, not a redesign.",
  "width": 1024,
  "height": 1024,
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/57781ce5-05f3-447e-8733-85e577c6be68.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "7a53a679-a229-4f64-bbe6-c1d7c7d6d899",
  "imageUUID": "4a3b35cf-9059-4c0e-bd80-b05255fe830c",
  "imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/4a3b35cf-9059-4c0e-bd80-b05255fe830c.jpg",
  "seed": 528653174,
  "cost": 0.00714
}
reference-to-image

Coastal Tidal Pool Night Visualization

Coastal Tidal Pool Night Visualization

Edit the supplied architectural photograph into a photorealistic winter blue-hour lighting visualization for a municipal public-realm review. Preserve the exact camera position, square composition, ocean-pool geometry, pavilion architecture, railings, steps, rock formations, horizon, material weathering and all other physical details. Change only the time of day, atmosphere and illumination: replace the flat overcast daylight with a clear deep-cobalt twilight sky just after sunset, retaining subtle low clouds near the horizon. Relight the scene naturally with cool ambient dusk from the sky, restrained warm amber light from the pavilion windows and existing low path fixtures, and soft turquoise illumination within the pool from existing underwater lights. Let the warm fixtures create realistic pools of light and elongated reflections across the damp concrete without making the site look theatrical. Add delicate specular highlights to handrails, believable reflections in the calm water and faint white surf on the distant dark rocks. Maintain readable shadow detail and a professional architectural-photography finish with controlled dynamic range, neutral materials and accurate light falloff. Quiet, safe, contemplative coastal atmosphere; deep teal, cobalt and muted amber palette. Do not add people, furniture, signs, text, logos, new buildings, new light poles or fantasy elements.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'alibaba:qwen-image-edit@2511',
  positivePrompt: 'Edit the supplied architectural photograph into a photorealistic winter blue-hour lighting visualization for a municipal public-realm review. Preserve the exact camera position, square composition, ocean-pool geometry, pavilion architecture, railings, steps, rock formations, horizon, material weathering and all other physical details. Change only the time of day, atmosphere and illumination: replace the flat overcast daylight with a clear deep-cobalt twilight sky just after sunset, retaining subtle low clouds near the horizon. Relight the scene naturally with cool ambient dusk from the sky, restrained warm amber light from the pavilion windows and existing low path fixtures, and soft turquoise illumination within the pool from existing underwater lights. Let the warm fixtures create realistic pools of light and elongated reflections across the damp concrete without making the site look theatrical. Add delicate specular highlights to handrails, believable reflections in the calm water and faint white surf on the distant dark rocks. Maintain readable shadow detail and a professional architectural-photography finish with controlled dynamic range, neutral materials and accurate light falloff. Quiet, safe, contemplative coastal atmosphere; deep teal, cobalt and muted amber palette. Do not add people, furniture, signs, text, logos, new buildings, new light poles or fantasy elements.',
  width: 1024,
  height: 1024,
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/b05d3c2f-00d4-4d75-be57-5f5315eef324.jpg'
    ]
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "alibaba:qwen-image-edit@2511",
            "positivePrompt": "Edit the supplied architectural photograph into a photorealistic winter blue-hour lighting visualization for a municipal public-realm review. Preserve the exact camera position, square composition, ocean-pool geometry, pavilion architecture, railings, steps, rock formations, horizon, material weathering and all other physical details. Change only the time of day, atmosphere and illumination: replace the flat overcast daylight with a clear deep-cobalt twilight sky just after sunset, retaining subtle low clouds near the horizon. Relight the scene naturally with cool ambient dusk from the sky, restrained warm amber light from the pavilion windows and existing low path fixtures, and soft turquoise illumination within the pool from existing underwater lights. Let the warm fixtures create realistic pools of light and elongated reflections across the damp concrete without making the site look theatrical. Add delicate specular highlights to handrails, believable reflections in the calm water and faint white surf on the distant dark rocks. Maintain readable shadow detail and a professional architectural-photography finish with controlled dynamic range, neutral materials and accurate light falloff. Quiet, safe, contemplative coastal atmosphere; deep teal, cobalt and muted amber palette. Do not add people, furniture, signs, text, logos, new buildings, new light poles or fantasy elements.",
            "width": 1024,
            "height": 1024,
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/b05d3c2f-00d4-4d75-be57-5f5315eef324.jpg"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "1df1c7e6-8674-4bed-ad88-ff847e0d3093",
      "model": "alibaba:qwen-image-edit@2511",
      "positivePrompt": "Edit the supplied architectural photograph into a photorealistic winter blue-hour lighting visualization for a municipal public-realm review. Preserve the exact camera position, square composition, ocean-pool geometry, pavilion architecture, railings, steps, rock formations, horizon, material weathering and all other physical details. Change only the time of day, atmosphere and illumination: replace the flat overcast daylight with a clear deep-cobalt twilight sky just after sunset, retaining subtle low clouds near the horizon. Relight the scene naturally with cool ambient dusk from the sky, restrained warm amber light from the pavilion windows and existing low path fixtures, and soft turquoise illumination within the pool from existing underwater lights. Let the warm fixtures create realistic pools of light and elongated reflections across the damp concrete without making the site look theatrical. Add delicate specular highlights to handrails, believable reflections in the calm water and faint white surf on the distant dark rocks. Maintain readable shadow detail and a professional architectural-photography finish with controlled dynamic range, neutral materials and accurate light falloff. Quiet, safe, contemplative coastal atmosphere; deep teal, cobalt and muted amber palette. Do not add people, furniture, signs, text, logos, new buildings, new light poles or fantasy elements.",
      "width": 1024,
      "height": 1024,
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/b05d3c2f-00d4-4d75-be57-5f5315eef324.jpg"
        ]
      }
    }
  ]'
runware run alibaba:qwen-image-edit@2511 \
  positivePrompt="Edit the supplied architectural photograph into a photorealistic winter blue-hour lighting visualization for a municipal public-realm review. Preserve the exact camera position, square composition, ocean-pool geometry, pavilion architecture, railings, steps, rock formations, horizon, material weathering and all other physical details. Change only the time of day, atmosphere and illumination: replace the flat overcast daylight with a clear deep-cobalt twilight sky just after sunset, retaining subtle low clouds near the horizon. Relight the scene naturally with cool ambient dusk from the sky, restrained warm amber light from the pavilion windows and existing low path fixtures, and soft turquoise illumination within the pool from existing underwater lights. Let the warm fixtures create realistic pools of light and elongated reflections across the damp concrete without making the site look theatrical. Add delicate specular highlights to handrails, believable reflections in the calm water and faint white surf on the distant dark rocks. Maintain readable shadow detail and a professional architectural-photography finish with controlled dynamic range, neutral materials and accurate light falloff. Quiet, safe, contemplative coastal atmosphere; deep teal, cobalt and muted amber palette. Do not add people, furniture, signs, text, logos, new buildings, new light poles or fantasy elements." \
  width=1024 \
  height=1024 \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/b05d3c2f-00d4-4d75-be57-5f5315eef324.jpg
{
  "taskType": "imageInference",
  "taskUUID": "1df1c7e6-8674-4bed-ad88-ff847e0d3093",
  "model": "alibaba:qwen-image-edit@2511",
  "positivePrompt": "Edit the supplied architectural photograph into a photorealistic winter blue-hour lighting visualization for a municipal public-realm review. Preserve the exact camera position, square composition, ocean-pool geometry, pavilion architecture, railings, steps, rock formations, horizon, material weathering and all other physical details. Change only the time of day, atmosphere and illumination: replace the flat overcast daylight with a clear deep-cobalt twilight sky just after sunset, retaining subtle low clouds near the horizon. Relight the scene naturally with cool ambient dusk from the sky, restrained warm amber light from the pavilion windows and existing low path fixtures, and soft turquoise illumination within the pool from existing underwater lights. Let the warm fixtures create realistic pools of light and elongated reflections across the damp concrete without making the site look theatrical. Add delicate specular highlights to handrails, believable reflections in the calm water and faint white surf on the distant dark rocks. Maintain readable shadow detail and a professional architectural-photography finish with controlled dynamic range, neutral materials and accurate light falloff. Quiet, safe, contemplative coastal atmosphere; deep teal, cobalt and muted amber palette. Do not add people, furniture, signs, text, logos, new buildings, new light poles or fantasy elements.",
  "width": 1024,
  "height": 1024,
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/b05d3c2f-00d4-4d75-be57-5f5315eef324.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "1df1c7e6-8674-4bed-ad88-ff847e0d3093",
  "imageUUID": "1d4a738e-b475-4a24-9861-8e8607d36dca",
  "imageURL": "https://im.runware.ai/image/os/a05d22/ws/3/ii/1d4a738e-b475-4a24-9861-8e8607d36dca.jpg",
  "seed": 723513744,
  "cost": 0.0063
}
reference-to-image

Cathedral Conservation Team Portrait

Cathedral Conservation Team Portrait

Edit the first reference image into a finished official team portrait by adding the woman from the second reference image into the open person-sized gap near the center-right of the conservation group. Reproduce her identity faithfully, including her facial features, short silver natural hair, age, skin tone, sturdy proportions, navy coveralls, safety boots, tool belt, and safety glasses. Show her standing at full length on the same stone floor, facing the camera with a calm, proud expression and a relaxed posture that matches the other craftspeople. Integrate her naturally into the existing row with believable spacing, scale, perspective, foot placement, slight overlap, contact shadows, ambient bounce light, depth of field, grain, and clerestory daylight. Make subtle pose adjustments only as needed so she belongs convincingly with the team. Preserve every existing person exactly as photographed, including their identities, faces, expressions, poses, clothing, hands, and positions. Preserve the original square composition, cathedral architecture, carved limestone, scaffolding, tools, dust sheets, lighting, muted sandstone-charcoal-cobalt palette, and dignified documentary art direction. Do not remove, replace, duplicate, or significantly alter any existing team member. The result should look like one authentic large-format photograph captured at the same moment, not a collage or obvious composite. No captions, logos, borders, or added text.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'alibaba:qwen-image-edit@2511',
  positivePrompt: 'Edit the first reference image into a finished official team portrait by adding the woman from the second reference image into the open person-sized gap near the center-right of the conservation group. Reproduce her identity faithfully, including her facial features, short silver natural hair, age, skin tone, sturdy proportions, navy coveralls, safety boots, tool belt, and safety glasses. Show her standing at full length on the same stone floor, facing the camera with a calm, proud expression and a relaxed posture that matches the other craftspeople. Integrate her naturally into the existing row with believable spacing, scale, perspective, foot placement, slight overlap, contact shadows, ambient bounce light, depth of field, grain, and clerestory daylight. Make subtle pose adjustments only as needed so she belongs convincingly with the team. Preserve every existing person exactly as photographed, including their identities, faces, expressions, poses, clothing, hands, and positions. Preserve the original square composition, cathedral architecture, carved limestone, scaffolding, tools, dust sheets, lighting, muted sandstone-charcoal-cobalt palette, and dignified documentary art direction. Do not remove, replace, duplicate, or significantly alter any existing team member. The result should look like one authentic large-format photograph captured at the same moment, not a collage or obvious composite. No captions, logos, borders, or added text.',
  width: 1024,
  height: 1024,
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/2175fbc7-9b40-4cde-bbd8-ddd281ddb614.jpg',
      'https://assets.runware.ai/assets/inputs/f9f8ae40-5b90-4356-b972-cef9fc455d6a.jpg'
    ]
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "alibaba:qwen-image-edit@2511",
            "positivePrompt": "Edit the first reference image into a finished official team portrait by adding the woman from the second reference image into the open person-sized gap near the center-right of the conservation group. Reproduce her identity faithfully, including her facial features, short silver natural hair, age, skin tone, sturdy proportions, navy coveralls, safety boots, tool belt, and safety glasses. Show her standing at full length on the same stone floor, facing the camera with a calm, proud expression and a relaxed posture that matches the other craftspeople. Integrate her naturally into the existing row with believable spacing, scale, perspective, foot placement, slight overlap, contact shadows, ambient bounce light, depth of field, grain, and clerestory daylight. Make subtle pose adjustments only as needed so she belongs convincingly with the team. Preserve every existing person exactly as photographed, including their identities, faces, expressions, poses, clothing, hands, and positions. Preserve the original square composition, cathedral architecture, carved limestone, scaffolding, tools, dust sheets, lighting, muted sandstone-charcoal-cobalt palette, and dignified documentary art direction. Do not remove, replace, duplicate, or significantly alter any existing team member. The result should look like one authentic large-format photograph captured at the same moment, not a collage or obvious composite. No captions, logos, borders, or added text.",
            "width": 1024,
            "height": 1024,
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/2175fbc7-9b40-4cde-bbd8-ddd281ddb614.jpg",
                    "https://assets.runware.ai/assets/inputs/f9f8ae40-5b90-4356-b972-cef9fc455d6a.jpg"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "b72bf544-5645-4858-b983-fe8a1fb6140b",
      "model": "alibaba:qwen-image-edit@2511",
      "positivePrompt": "Edit the first reference image into a finished official team portrait by adding the woman from the second reference image into the open person-sized gap near the center-right of the conservation group. Reproduce her identity faithfully, including her facial features, short silver natural hair, age, skin tone, sturdy proportions, navy coveralls, safety boots, tool belt, and safety glasses. Show her standing at full length on the same stone floor, facing the camera with a calm, proud expression and a relaxed posture that matches the other craftspeople. Integrate her naturally into the existing row with believable spacing, scale, perspective, foot placement, slight overlap, contact shadows, ambient bounce light, depth of field, grain, and clerestory daylight. Make subtle pose adjustments only as needed so she belongs convincingly with the team. Preserve every existing person exactly as photographed, including their identities, faces, expressions, poses, clothing, hands, and positions. Preserve the original square composition, cathedral architecture, carved limestone, scaffolding, tools, dust sheets, lighting, muted sandstone-charcoal-cobalt palette, and dignified documentary art direction. Do not remove, replace, duplicate, or significantly alter any existing team member. The result should look like one authentic large-format photograph captured at the same moment, not a collage or obvious composite. No captions, logos, borders, or added text.",
      "width": 1024,
      "height": 1024,
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/2175fbc7-9b40-4cde-bbd8-ddd281ddb614.jpg",
          "https://assets.runware.ai/assets/inputs/f9f8ae40-5b90-4356-b972-cef9fc455d6a.jpg"
        ]
      }
    }
  ]'
runware run alibaba:qwen-image-edit@2511 \
  positivePrompt="Edit the first reference image into a finished official team portrait by adding the woman from the second reference image into the open person-sized gap near the center-right of the conservation group. Reproduce her identity faithfully, including her facial features, short silver natural hair, age, skin tone, sturdy proportions, navy coveralls, safety boots, tool belt, and safety glasses. Show her standing at full length on the same stone floor, facing the camera with a calm, proud expression and a relaxed posture that matches the other craftspeople. Integrate her naturally into the existing row with believable spacing, scale, perspective, foot placement, slight overlap, contact shadows, ambient bounce light, depth of field, grain, and clerestory daylight. Make subtle pose adjustments only as needed so she belongs convincingly with the team. Preserve every existing person exactly as photographed, including their identities, faces, expressions, poses, clothing, hands, and positions. Preserve the original square composition, cathedral architecture, carved limestone, scaffolding, tools, dust sheets, lighting, muted sandstone-charcoal-cobalt palette, and dignified documentary art direction. Do not remove, replace, duplicate, or significantly alter any existing team member. The result should look like one authentic large-format photograph captured at the same moment, not a collage or obvious composite. No captions, logos, borders, or added text." \
  width=1024 \
  height=1024 \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/2175fbc7-9b40-4cde-bbd8-ddd281ddb614.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/f9f8ae40-5b90-4356-b972-cef9fc455d6a.jpg
{
  "taskType": "imageInference",
  "taskUUID": "b72bf544-5645-4858-b983-fe8a1fb6140b",
  "model": "alibaba:qwen-image-edit@2511",
  "positivePrompt": "Edit the first reference image into a finished official team portrait by adding the woman from the second reference image into the open person-sized gap near the center-right of the conservation group. Reproduce her identity faithfully, including her facial features, short silver natural hair, age, skin tone, sturdy proportions, navy coveralls, safety boots, tool belt, and safety glasses. Show her standing at full length on the same stone floor, facing the camera with a calm, proud expression and a relaxed posture that matches the other craftspeople. Integrate her naturally into the existing row with believable spacing, scale, perspective, foot placement, slight overlap, contact shadows, ambient bounce light, depth of field, grain, and clerestory daylight. Make subtle pose adjustments only as needed so she belongs convincingly with the team. Preserve every existing person exactly as photographed, including their identities, faces, expressions, poses, clothing, hands, and positions. Preserve the original square composition, cathedral architecture, carved limestone, scaffolding, tools, dust sheets, lighting, muted sandstone-charcoal-cobalt palette, and dignified documentary art direction. Do not remove, replace, duplicate, or significantly alter any existing team member. The result should look like one authentic large-format photograph captured at the same moment, not a collage or obvious composite. No captions, logos, borders, or added text.",
  "width": 1024,
  "height": 1024,
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/2175fbc7-9b40-4cde-bbd8-ddd281ddb614.jpg",
      "https://assets.runware.ai/assets/inputs/f9f8ae40-5b90-4356-b972-cef9fc455d6a.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "b72bf544-5645-4858-b983-fe8a1fb6140b",
  "imageUUID": "2543b300-cfe8-4fa5-9f22-204e66dc25bf",
  "imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/2543b300-cfe8-4fa5-9f22-204e66dc25bf.jpg",
  "seed": 1150119871,
  "cost": 0.0098
}