Qwen-Image-3.0-Pro

Qwen-Image-3.0-Pro is Alibaba's higher-capability Qwen Image 3.0 model for both text-to-image generation and prompt-guided image editing. It is built for visually dense and instruction-heavy work, with stronger support for complex layouts, image-within-image compositions, multilingual typography, and precise small-text rendering while preserving high photorealistic detail in faces, skin, hair, and materials. It is especially well suited to posters, menus, storyboards, interface mockups, branded graphics, and other production workflows where layout fidelity and text quality matter as much as raw image quality.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
Colorized Cable Ship Archive Photograph

Create the finished restored and colorized archival photograph for a maritime communications museum collection. Reconstruct a historically plausible 1928 documentary photograph taken on the open deck of a British transatlantic cable-repair ship in the North Atlantic. Six weathered cable engineers and deckhands stand and crouch around a freshly hauled submarine telegraph cable as two men carefully inspect its exposed copper core on a heavy wooden workbench. Include a vast iron cable drum, wet hemp rope, riveted steel fittings, capstan machinery, canvas oilskins, knitted watch caps, wool trousers, salt-stained leather boots, hand tools and a low ship rail. Beyond the rail, show a cold steel-blue sea with modest swells and a hazy horizon beneath an overcast sky. Arrange the crew in a natural working tableau rather than a formal pose: one older foreman studies the splice, two workers guide the thick cable, another wipes his hands, and two figures watch from beside the drum. Preserve distinct, realistic faces, working hands and period-correct clothing. Compose as a 3:2 landscape press photograph made with a late-1920s large-format camera: eye-level viewpoint, slightly wide framing, crew concentrated across the lower middle, cable drum anchoring the left side, workbench and exposed cable forming a strong diagonal toward the right, open sea providing breathing room above the rail. Soft diffused maritime daylight, damp surfaces, subdued contrast and believable depth. Apply expert museum-grade restoration: missing emulsion and torn areas seamlessly reconstructed, scratches, dust, chemical stains, fold marks and silvering removed, facial detail and machinery recovered without making them unnaturally sharp. Retain subtle period lens softness, gentle corner falloff and a fine, authentic monochrome-film grain structure beneath the color. Use conservative hand-colorization appropriate to a professionally restored archive print: muted navy and charcoal workwear, faded ochre oilskins, dark brown leather, weathered reddish-brown wood, gunmetal machinery, dull copper strands, pale wind-reddened skin, cool gray-blue sea and cloud cover. Colors should feel researched, restrained and slightly desaturated, never modern, glossy or cinematic. The result must be one seamless full-frame historical photograph, not a before-and-after comparison, not a collage, not a framed print, and not a museum display mockup. No captions, dates, logos, borders or visible writing.
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@3.0-pro',
positivePrompt: 'Create the finished restored and colorized archival photograph for a maritime communications museum collection. Reconstruct a historically plausible 1928 documentary photograph taken on the open deck of a British transatlantic cable-repair ship in the North Atlantic. Six weathered cable engineers and deckhands stand and crouch around a freshly hauled submarine telegraph cable as two men carefully inspect its exposed copper core on a heavy wooden workbench. Include a vast iron cable drum, wet hemp rope, riveted steel fittings, capstan machinery, canvas oilskins, knitted watch caps, wool trousers, salt-stained leather boots, hand tools and a low ship rail. Beyond the rail, show a cold steel-blue sea with modest swells and a hazy horizon beneath an overcast sky. Arrange the crew in a natural working tableau rather than a formal pose: one older foreman studies the splice, two workers guide the thick cable, another wipes his hands, and two figures watch from beside the drum. Preserve distinct, realistic faces, working hands and period-correct clothing.\n\nCompose as a 3:2 landscape press photograph made with a late-1920s large-format camera: eye-level viewpoint, slightly wide framing, crew concentrated across the lower middle, cable drum anchoring the left side, workbench and exposed cable forming a strong diagonal toward the right, open sea providing breathing room above the rail. Soft diffused maritime daylight, damp surfaces, subdued contrast and believable depth. Apply expert museum-grade restoration: missing emulsion and torn areas seamlessly reconstructed, scratches, dust, chemical stains, fold marks and silvering removed, facial detail and machinery recovered without making them unnaturally sharp. Retain subtle period lens softness, gentle corner falloff and a fine, authentic monochrome-film grain structure beneath the color.\n\nUse conservative hand-colorization appropriate to a professionally restored archive print: muted navy and charcoal workwear, faded ochre oilskins, dark brown leather, weathered reddish-brown wood, gunmetal machinery, dull copper strands, pale wind-reddened skin, cool gray-blue sea and cloud cover. Colors should feel researched, restrained and slightly desaturated, never modern, glossy or cinematic. The result must be one seamless full-frame historical photograph, not a before-and-after comparison, not a collage, not a framed print, and not a museum display mockup. No captions, dates, logos, borders or visible writing.',
width: 1536,
height: 1024,
providerSettings: {
alibaba: {
promptExtend: false
}
}
})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@3.0-pro",
"positivePrompt": "Create the finished restored and colorized archival photograph for a maritime communications museum collection. Reconstruct a historically plausible 1928 documentary photograph taken on the open deck of a British transatlantic cable-repair ship in the North Atlantic. Six weathered cable engineers and deckhands stand and crouch around a freshly hauled submarine telegraph cable as two men carefully inspect its exposed copper core on a heavy wooden workbench. Include a vast iron cable drum, wet hemp rope, riveted steel fittings, capstan machinery, canvas oilskins, knitted watch caps, wool trousers, salt-stained leather boots, hand tools and a low ship rail. Beyond the rail, show a cold steel-blue sea with modest swells and a hazy horizon beneath an overcast sky. Arrange the crew in a natural working tableau rather than a formal pose: one older foreman studies the splice, two workers guide the thick cable, another wipes his hands, and two figures watch from beside the drum. Preserve distinct, realistic faces, working hands and period-correct clothing.\n\nCompose as a 3:2 landscape press photograph made with a late-1920s large-format camera: eye-level viewpoint, slightly wide framing, crew concentrated across the lower middle, cable drum anchoring the left side, workbench and exposed cable forming a strong diagonal toward the right, open sea providing breathing room above the rail. Soft diffused maritime daylight, damp surfaces, subdued contrast and believable depth. Apply expert museum-grade restoration: missing emulsion and torn areas seamlessly reconstructed, scratches, dust, chemical stains, fold marks and silvering removed, facial detail and machinery recovered without making them unnaturally sharp. Retain subtle period lens softness, gentle corner falloff and a fine, authentic monochrome-film grain structure beneath the color.\n\nUse conservative hand-colorization appropriate to a professionally restored archive print: muted navy and charcoal workwear, faded ochre oilskins, dark brown leather, weathered reddish-brown wood, gunmetal machinery, dull copper strands, pale wind-reddened skin, cool gray-blue sea and cloud cover. Colors should feel researched, restrained and slightly desaturated, never modern, glossy or cinematic. The result must be one seamless full-frame historical photograph, not a before-and-after comparison, not a collage, not a framed print, and not a museum display mockup. No captions, dates, logos, borders or visible writing.",
"width": 1536,
"height": 1024,
"providerSettings": {
"alibaba": {
"promptExtend": False
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "5a3892b0-ed8a-46b2-8db0-2876c0afb0fa",
"model": "alibaba:qwen-image@3.0-pro",
"positivePrompt": "Create the finished restored and colorized archival photograph for a maritime communications museum collection. Reconstruct a historically plausible 1928 documentary photograph taken on the open deck of a British transatlantic cable-repair ship in the North Atlantic. Six weathered cable engineers and deckhands stand and crouch around a freshly hauled submarine telegraph cable as two men carefully inspect its exposed copper core on a heavy wooden workbench. Include a vast iron cable drum, wet hemp rope, riveted steel fittings, capstan machinery, canvas oilskins, knitted watch caps, wool trousers, salt-stained leather boots, hand tools and a low ship rail. Beyond the rail, show a cold steel-blue sea with modest swells and a hazy horizon beneath an overcast sky. Arrange the crew in a natural working tableau rather than a formal pose: one older foreman studies the splice, two workers guide the thick cable, another wipes his hands, and two figures watch from beside the drum. Preserve distinct, realistic faces, working hands and period-correct clothing.\n\nCompose as a 3:2 landscape press photograph made with a late-1920s large-format camera: eye-level viewpoint, slightly wide framing, crew concentrated across the lower middle, cable drum anchoring the left side, workbench and exposed cable forming a strong diagonal toward the right, open sea providing breathing room above the rail. Soft diffused maritime daylight, damp surfaces, subdued contrast and believable depth. Apply expert museum-grade restoration: missing emulsion and torn areas seamlessly reconstructed, scratches, dust, chemical stains, fold marks and silvering removed, facial detail and machinery recovered without making them unnaturally sharp. Retain subtle period lens softness, gentle corner falloff and a fine, authentic monochrome-film grain structure beneath the color.\n\nUse conservative hand-colorization appropriate to a professionally restored archive print: muted navy and charcoal workwear, faded ochre oilskins, dark brown leather, weathered reddish-brown wood, gunmetal machinery, dull copper strands, pale wind-reddened skin, cool gray-blue sea and cloud cover. Colors should feel researched, restrained and slightly desaturated, never modern, glossy or cinematic. The result must be one seamless full-frame historical photograph, not a before-and-after comparison, not a collage, not a framed print, and not a museum display mockup. No captions, dates, logos, borders or visible writing.",
"width": 1536,
"height": 1024,
"providerSettings": {
"alibaba": {
"promptExtend": false
}
}
}
]'runware run alibaba:qwen-image@3.0-pro \
positivePrompt="Create the finished restored and colorized archival photograph for a maritime communications museum collection. Reconstruct a historically plausible 1928 documentary photograph taken on the open deck of a British transatlantic cable-repair ship in the North Atlantic. Six weathered cable engineers and deckhands stand and crouch around a freshly hauled submarine telegraph cable as two men carefully inspect its exposed copper core on a heavy wooden workbench. Include a vast iron cable drum, wet hemp rope, riveted steel fittings, capstan machinery, canvas oilskins, knitted watch caps, wool trousers, salt-stained leather boots, hand tools and a low ship rail. Beyond the rail, show a cold steel-blue sea with modest swells and a hazy horizon beneath an overcast sky. Arrange the crew in a natural working tableau rather than a formal pose: one older foreman studies the splice, two workers guide the thick cable, another wipes his hands, and two figures watch from beside the drum. Preserve distinct, realistic faces, working hands and period-correct clothing.
Compose as a 3:2 landscape press photograph made with a late-1920s large-format camera: eye-level viewpoint, slightly wide framing, crew concentrated across the lower middle, cable drum anchoring the left side, workbench and exposed cable forming a strong diagonal toward the right, open sea providing breathing room above the rail. Soft diffused maritime daylight, damp surfaces, subdued contrast and believable depth. Apply expert museum-grade restoration: missing emulsion and torn areas seamlessly reconstructed, scratches, dust, chemical stains, fold marks and silvering removed, facial detail and machinery recovered without making them unnaturally sharp. Retain subtle period lens softness, gentle corner falloff and a fine, authentic monochrome-film grain structure beneath the color.
Use conservative hand-colorization appropriate to a professionally restored archive print: muted navy and charcoal workwear, faded ochre oilskins, dark brown leather, weathered reddish-brown wood, gunmetal machinery, dull copper strands, pale wind-reddened skin, cool gray-blue sea and cloud cover. Colors should feel researched, restrained and slightly desaturated, never modern, glossy or cinematic. The result must be one seamless full-frame historical photograph, not a before-and-after comparison, not a collage, not a framed print, and not a museum display mockup. No captions, dates, logos, borders or visible writing." \
width=1536 \
height=1024 \
providerSettings.alibaba.promptExtend=false{
"taskType": "imageInference",
"taskUUID": "5a3892b0-ed8a-46b2-8db0-2876c0afb0fa",
"model": "alibaba:qwen-image@3.0-pro",
"positivePrompt": "Create the finished restored and colorized archival photograph for a maritime communications museum collection. Reconstruct a historically plausible 1928 documentary photograph taken on the open deck of a British transatlantic cable-repair ship in the North Atlantic. Six weathered cable engineers and deckhands stand and crouch around a freshly hauled submarine telegraph cable as two men carefully inspect its exposed copper core on a heavy wooden workbench. Include a vast iron cable drum, wet hemp rope, riveted steel fittings, capstan machinery, canvas oilskins, knitted watch caps, wool trousers, salt-stained leather boots, hand tools and a low ship rail. Beyond the rail, show a cold steel-blue sea with modest swells and a hazy horizon beneath an overcast sky. Arrange the crew in a natural working tableau rather than a formal pose: one older foreman studies the splice, two workers guide the thick cable, another wipes his hands, and two figures watch from beside the drum. Preserve distinct, realistic faces, working hands and period-correct clothing.\n\nCompose as a 3:2 landscape press photograph made with a late-1920s large-format camera: eye-level viewpoint, slightly wide framing, crew concentrated across the lower middle, cable drum anchoring the left side, workbench and exposed cable forming a strong diagonal toward the right, open sea providing breathing room above the rail. Soft diffused maritime daylight, damp surfaces, subdued contrast and believable depth. Apply expert museum-grade restoration: missing emulsion and torn areas seamlessly reconstructed, scratches, dust, chemical stains, fold marks and silvering removed, facial detail and machinery recovered without making them unnaturally sharp. Retain subtle period lens softness, gentle corner falloff and a fine, authentic monochrome-film grain structure beneath the color.\n\nUse conservative hand-colorization appropriate to a professionally restored archive print: muted navy and charcoal workwear, faded ochre oilskins, dark brown leather, weathered reddish-brown wood, gunmetal machinery, dull copper strands, pale wind-reddened skin, cool gray-blue sea and cloud cover. Colors should feel researched, restrained and slightly desaturated, never modern, glossy or cinematic. The result must be one seamless full-frame historical photograph, not a before-and-after comparison, not a collage, not a framed print, and not a museum display mockup. No captions, dates, logos, borders or visible writing.",
"width": 1536,
"height": 1024,
"providerSettings": {
"alibaba": {
"promptExtend": false
}
}
}{
"taskType": "imageInference",
"taskUUID": "5a3892b0-ed8a-46b2-8db0-2876c0afb0fa",
"imageUUID": "0294e93f-be78-41a7-b903-afd11a027b05",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/3/ii/0294e93f-be78-41a7-b903-afd11a027b05.jpg",
"seed": 1887301156,
"cost": 0.04
}Municipal Geothermal Campaign Key Visual

Create a finished landscape brand campaign key visual for CIVIC GROUND, a municipal geothermal utility. Use a sophisticated editorial cutaway composition that reveals an entire city block above and below ground. Across the upper third, show a calm winter neighborhood at blue hour: three contemporary brick apartment buildings, a small public library, bare street trees, pedestrians in coats, bicycles, and softly illuminated windows. A light dusting of snow covers roofs and pavement. The street is shown in precise architectural side elevation, while the earth beneath it occupies the lower two-thirds of the image as a dramatic geological cross-section. Render layered bands of clay, sandstone, granite, and deep bedrock in rich mineral colors. Two slender geothermal boreholes descend vertically through the strata, connected by elegant vermilion-red and pale-cyan flow lines that loop back toward a compact neighborhood energy station. Show subtle heat movement as clean graphic gradients and fine contour lines rather than flames or science-fiction effects. Art direction: premium European public-infrastructure campaign, combining mid-century screen-print geometry, contemporary architectural illustration, and scientific atlas clarity. Slightly tactile paper grain, crisp vector-like edges, restrained halftone shading, carefully simplified human figures, credible engineering details. Palette of midnight cobalt, warm brick red, mineral ochre, chalk cream, muted teal, and one vivid vermilion accent. The contrast between the quiet snowy city above and the warm geological layers below should communicate dependable hidden energy. Mood: intelligent, civic-minded, optimistic, calm, trustworthy, not corporate stock imagery. Reserve a clean field of midnight cobalt in the upper-left sky for campaign typography. Set the following exact text, with correct spelling and no additional words: a small uppercase brand line “CIVIC GROUND” and beneath it a large bold headline on two lines, “HEAT, FROM HERE.” Use a modern condensed sans-serif in warm cream, left aligned, with excellent kerning and generous spacing. Integrate a simple circular brand mark beside CIVIC GROUND: three concentric contour rings with a single vertical line descending through them. Keep all typography fully legible and comfortably inside safe margins. Balance the buildings toward the upper-right so the headline has ample negative space. Wide 3:2 composition, polished advertising finish, suitable as the master image for outdoor media, transit placements, a campaign landing page, and press materials.
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@3.0-pro',
positivePrompt: 'Create a finished landscape brand campaign key visual for CIVIC GROUND, a municipal geothermal utility. Use a sophisticated editorial cutaway composition that reveals an entire city block above and below ground. Across the upper third, show a calm winter neighborhood at blue hour: three contemporary brick apartment buildings, a small public library, bare street trees, pedestrians in coats, bicycles, and softly illuminated windows. A light dusting of snow covers roofs and pavement. The street is shown in precise architectural side elevation, while the earth beneath it occupies the lower two-thirds of the image as a dramatic geological cross-section. Render layered bands of clay, sandstone, granite, and deep bedrock in rich mineral colors. Two slender geothermal boreholes descend vertically through the strata, connected by elegant vermilion-red and pale-cyan flow lines that loop back toward a compact neighborhood energy station. Show subtle heat movement as clean graphic gradients and fine contour lines rather than flames or science-fiction effects.\n\nArt direction: premium European public-infrastructure campaign, combining mid-century screen-print geometry, contemporary architectural illustration, and scientific atlas clarity. Slightly tactile paper grain, crisp vector-like edges, restrained halftone shading, carefully simplified human figures, credible engineering details. Palette of midnight cobalt, warm brick red, mineral ochre, chalk cream, muted teal, and one vivid vermilion accent. The contrast between the quiet snowy city above and the warm geological layers below should communicate dependable hidden energy. Mood: intelligent, civic-minded, optimistic, calm, trustworthy, not corporate stock imagery.\n\nReserve a clean field of midnight cobalt in the upper-left sky for campaign typography. Set the following exact text, with correct spelling and no additional words: a small uppercase brand line “CIVIC GROUND” and beneath it a large bold headline on two lines, “HEAT, FROM HERE.” Use a modern condensed sans-serif in warm cream, left aligned, with excellent kerning and generous spacing. Integrate a simple circular brand mark beside CIVIC GROUND: three concentric contour rings with a single vertical line descending through them. Keep all typography fully legible and comfortably inside safe margins. Balance the buildings toward the upper-right so the headline has ample negative space. Wide 3:2 composition, polished advertising finish, suitable as the master image for outdoor media, transit placements, a campaign landing page, and press materials.',
negativePrompt: 'photorealistic stock photography, generic smart-city imagery, solar panels, wind turbines, flames, lava, fantasy caverns, futuristic holograms, app interface, website mockup, buttons, illegible lettering, misspelled words, extra copy, crowded layout, cartoon style, childish characters, distorted architecture, broken pipes, disaster scene, gloomy dystopian mood, watermark',
width: 1536,
height: 1024,
providerSettings: {
alibaba: {
promptExtend: false
}
}
})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@3.0-pro",
"positivePrompt": "Create a finished landscape brand campaign key visual for CIVIC GROUND, a municipal geothermal utility. Use a sophisticated editorial cutaway composition that reveals an entire city block above and below ground. Across the upper third, show a calm winter neighborhood at blue hour: three contemporary brick apartment buildings, a small public library, bare street trees, pedestrians in coats, bicycles, and softly illuminated windows. A light dusting of snow covers roofs and pavement. The street is shown in precise architectural side elevation, while the earth beneath it occupies the lower two-thirds of the image as a dramatic geological cross-section. Render layered bands of clay, sandstone, granite, and deep bedrock in rich mineral colors. Two slender geothermal boreholes descend vertically through the strata, connected by elegant vermilion-red and pale-cyan flow lines that loop back toward a compact neighborhood energy station. Show subtle heat movement as clean graphic gradients and fine contour lines rather than flames or science-fiction effects.\n\nArt direction: premium European public-infrastructure campaign, combining mid-century screen-print geometry, contemporary architectural illustration, and scientific atlas clarity. Slightly tactile paper grain, crisp vector-like edges, restrained halftone shading, carefully simplified human figures, credible engineering details. Palette of midnight cobalt, warm brick red, mineral ochre, chalk cream, muted teal, and one vivid vermilion accent. The contrast between the quiet snowy city above and the warm geological layers below should communicate dependable hidden energy. Mood: intelligent, civic-minded, optimistic, calm, trustworthy, not corporate stock imagery.\n\nReserve a clean field of midnight cobalt in the upper-left sky for campaign typography. Set the following exact text, with correct spelling and no additional words: a small uppercase brand line “CIVIC GROUND” and beneath it a large bold headline on two lines, “HEAT, FROM HERE.” Use a modern condensed sans-serif in warm cream, left aligned, with excellent kerning and generous spacing. Integrate a simple circular brand mark beside CIVIC GROUND: three concentric contour rings with a single vertical line descending through them. Keep all typography fully legible and comfortably inside safe margins. Balance the buildings toward the upper-right so the headline has ample negative space. Wide 3:2 composition, polished advertising finish, suitable as the master image for outdoor media, transit placements, a campaign landing page, and press materials.",
"negativePrompt": "photorealistic stock photography, generic smart-city imagery, solar panels, wind turbines, flames, lava, fantasy caverns, futuristic holograms, app interface, website mockup, buttons, illegible lettering, misspelled words, extra copy, crowded layout, cartoon style, childish characters, distorted architecture, broken pipes, disaster scene, gloomy dystopian mood, watermark",
"width": 1536,
"height": 1024,
"providerSettings": {
"alibaba": {
"promptExtend": False
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "ea26aa9a-d335-4a26-9c67-ebfc6288c3c9",
"model": "alibaba:qwen-image@3.0-pro",
"positivePrompt": "Create a finished landscape brand campaign key visual for CIVIC GROUND, a municipal geothermal utility. Use a sophisticated editorial cutaway composition that reveals an entire city block above and below ground. Across the upper third, show a calm winter neighborhood at blue hour: three contemporary brick apartment buildings, a small public library, bare street trees, pedestrians in coats, bicycles, and softly illuminated windows. A light dusting of snow covers roofs and pavement. The street is shown in precise architectural side elevation, while the earth beneath it occupies the lower two-thirds of the image as a dramatic geological cross-section. Render layered bands of clay, sandstone, granite, and deep bedrock in rich mineral colors. Two slender geothermal boreholes descend vertically through the strata, connected by elegant vermilion-red and pale-cyan flow lines that loop back toward a compact neighborhood energy station. Show subtle heat movement as clean graphic gradients and fine contour lines rather than flames or science-fiction effects.\n\nArt direction: premium European public-infrastructure campaign, combining mid-century screen-print geometry, contemporary architectural illustration, and scientific atlas clarity. Slightly tactile paper grain, crisp vector-like edges, restrained halftone shading, carefully simplified human figures, credible engineering details. Palette of midnight cobalt, warm brick red, mineral ochre, chalk cream, muted teal, and one vivid vermilion accent. The contrast between the quiet snowy city above and the warm geological layers below should communicate dependable hidden energy. Mood: intelligent, civic-minded, optimistic, calm, trustworthy, not corporate stock imagery.\n\nReserve a clean field of midnight cobalt in the upper-left sky for campaign typography. Set the following exact text, with correct spelling and no additional words: a small uppercase brand line “CIVIC GROUND” and beneath it a large bold headline on two lines, “HEAT, FROM HERE.” Use a modern condensed sans-serif in warm cream, left aligned, with excellent kerning and generous spacing. Integrate a simple circular brand mark beside CIVIC GROUND: three concentric contour rings with a single vertical line descending through them. Keep all typography fully legible and comfortably inside safe margins. Balance the buildings toward the upper-right so the headline has ample negative space. Wide 3:2 composition, polished advertising finish, suitable as the master image for outdoor media, transit placements, a campaign landing page, and press materials.",
"negativePrompt": "photorealistic stock photography, generic smart-city imagery, solar panels, wind turbines, flames, lava, fantasy caverns, futuristic holograms, app interface, website mockup, buttons, illegible lettering, misspelled words, extra copy, crowded layout, cartoon style, childish characters, distorted architecture, broken pipes, disaster scene, gloomy dystopian mood, watermark",
"width": 1536,
"height": 1024,
"providerSettings": {
"alibaba": {
"promptExtend": false
}
}
}
]'runware run alibaba:qwen-image@3.0-pro \
positivePrompt="Create a finished landscape brand campaign key visual for CIVIC GROUND, a municipal geothermal utility. Use a sophisticated editorial cutaway composition that reveals an entire city block above and below ground. Across the upper third, show a calm winter neighborhood at blue hour: three contemporary brick apartment buildings, a small public library, bare street trees, pedestrians in coats, bicycles, and softly illuminated windows. A light dusting of snow covers roofs and pavement. The street is shown in precise architectural side elevation, while the earth beneath it occupies the lower two-thirds of the image as a dramatic geological cross-section. Render layered bands of clay, sandstone, granite, and deep bedrock in rich mineral colors. Two slender geothermal boreholes descend vertically through the strata, connected by elegant vermilion-red and pale-cyan flow lines that loop back toward a compact neighborhood energy station. Show subtle heat movement as clean graphic gradients and fine contour lines rather than flames or science-fiction effects.
Art direction: premium European public-infrastructure campaign, combining mid-century screen-print geometry, contemporary architectural illustration, and scientific atlas clarity. Slightly tactile paper grain, crisp vector-like edges, restrained halftone shading, carefully simplified human figures, credible engineering details. Palette of midnight cobalt, warm brick red, mineral ochre, chalk cream, muted teal, and one vivid vermilion accent. The contrast between the quiet snowy city above and the warm geological layers below should communicate dependable hidden energy. Mood: intelligent, civic-minded, optimistic, calm, trustworthy, not corporate stock imagery.
Reserve a clean field of midnight cobalt in the upper-left sky for campaign typography. Set the following exact text, with correct spelling and no additional words: a small uppercase brand line “CIVIC GROUND” and beneath it a large bold headline on two lines, “HEAT, FROM HERE.” Use a modern condensed sans-serif in warm cream, left aligned, with excellent kerning and generous spacing. Integrate a simple circular brand mark beside CIVIC GROUND: three concentric contour rings with a single vertical line descending through them. Keep all typography fully legible and comfortably inside safe margins. Balance the buildings toward the upper-right so the headline has ample negative space. Wide 3:2 composition, polished advertising finish, suitable as the master image for outdoor media, transit placements, a campaign landing page, and press materials." \
negativePrompt="photorealistic stock photography, generic smart-city imagery, solar panels, wind turbines, flames, lava, fantasy caverns, futuristic holograms, app interface, website mockup, buttons, illegible lettering, misspelled words, extra copy, crowded layout, cartoon style, childish characters, distorted architecture, broken pipes, disaster scene, gloomy dystopian mood, watermark" \
width=1536 \
height=1024 \
providerSettings.alibaba.promptExtend=false{
"taskType": "imageInference",
"taskUUID": "ea26aa9a-d335-4a26-9c67-ebfc6288c3c9",
"model": "alibaba:qwen-image@3.0-pro",
"positivePrompt": "Create a finished landscape brand campaign key visual for CIVIC GROUND, a municipal geothermal utility. Use a sophisticated editorial cutaway composition that reveals an entire city block above and below ground. Across the upper third, show a calm winter neighborhood at blue hour: three contemporary brick apartment buildings, a small public library, bare street trees, pedestrians in coats, bicycles, and softly illuminated windows. A light dusting of snow covers roofs and pavement. The street is shown in precise architectural side elevation, while the earth beneath it occupies the lower two-thirds of the image as a dramatic geological cross-section. Render layered bands of clay, sandstone, granite, and deep bedrock in rich mineral colors. Two slender geothermal boreholes descend vertically through the strata, connected by elegant vermilion-red and pale-cyan flow lines that loop back toward a compact neighborhood energy station. Show subtle heat movement as clean graphic gradients and fine contour lines rather than flames or science-fiction effects.\n\nArt direction: premium European public-infrastructure campaign, combining mid-century screen-print geometry, contemporary architectural illustration, and scientific atlas clarity. Slightly tactile paper grain, crisp vector-like edges, restrained halftone shading, carefully simplified human figures, credible engineering details. Palette of midnight cobalt, warm brick red, mineral ochre, chalk cream, muted teal, and one vivid vermilion accent. The contrast between the quiet snowy city above and the warm geological layers below should communicate dependable hidden energy. Mood: intelligent, civic-minded, optimistic, calm, trustworthy, not corporate stock imagery.\n\nReserve a clean field of midnight cobalt in the upper-left sky for campaign typography. Set the following exact text, with correct spelling and no additional words: a small uppercase brand line “CIVIC GROUND” and beneath it a large bold headline on two lines, “HEAT, FROM HERE.” Use a modern condensed sans-serif in warm cream, left aligned, with excellent kerning and generous spacing. Integrate a simple circular brand mark beside CIVIC GROUND: three concentric contour rings with a single vertical line descending through them. Keep all typography fully legible and comfortably inside safe margins. Balance the buildings toward the upper-right so the headline has ample negative space. Wide 3:2 composition, polished advertising finish, suitable as the master image for outdoor media, transit placements, a campaign landing page, and press materials.",
"negativePrompt": "photorealistic stock photography, generic smart-city imagery, solar panels, wind turbines, flames, lava, fantasy caverns, futuristic holograms, app interface, website mockup, buttons, illegible lettering, misspelled words, extra copy, crowded layout, cartoon style, childish characters, distorted architecture, broken pipes, disaster scene, gloomy dystopian mood, watermark",
"width": 1536,
"height": 1024,
"providerSettings": {
"alibaba": {
"promptExtend": false
}
}
}{
"taskType": "imageInference",
"taskUUID": "ea26aa9a-d335-4a26-9c67-ebfc6288c3c9",
"imageUUID": "4e4e83f5-8307-4ef7-9324-420f2bd52928",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/4e4e83f5-8307-4ef7-9324-420f2bd52928.jpg",
"seed": 1016865725,
"cost": 0.04
}Museum Pest Investigation Blog Hero

Create a finished portrait-format blog hero for a serious museum conservation feature. Use reference image 1 to preserve the conservator’s recognizable face, navy work coat, gloves, rolled tapestry, and authentic collection-storage environment. Use reference image 2 to preserve the exact appearance, striped bristles, anatomy, and crimson wool setting of the carpet beetle larva. Combine both references into one coherent editorial photomontage: the conservator occupies the lower-right half, inspecting the tapestry beneath a focused task lamp, while an enlarged macro view of the beetle larva emerges across the upper-left as if revealed through a circular inspection lens. Make the scale shift intentional and scientifically legible, not a giant insect physically present in the room. Add subtle archival pest-monitoring details—small specimen pins, a paper inspection grid, fiber fragments, and restrained diagram lines—integrated around the macro inset. Art direction: sophisticated 1970s scientific-journal collage updated with crisp contemporary photographic detail; deep ultramarine shadows, acid-chartreuse annotation accents, warm ivory paper texture, and controlled crimson from the damaged wool. Investigative, intelligent, slightly tense, never horror or sensationalist. Strong depth, precise skin and textile texture, clean cut-paper transitions, restrained halftone grain, premium cultural-institution editorial design. Reserve a calm ivory title field across the upper third without covering the larva’s head. Set the exact text “COLLECTIONS CARE” as a small uppercase kicker, “THE TINY THREAT” as the large two-line headline, and “Inside the quiet war against museum pests” as a smaller deck. Typography must be crisp, correctly spelled, highly legible, and limited to those three text elements. Use a condensed bold grotesque for the headline and a clean modern sans serif for the supporting text. Maintain generous margins and a clear reading hierarchy suitable for a museum journal blog hero and vertical social preview. One finished standalone editorial image, full bleed, no website interface, no browser frame, no logo, no buttons, no mockup.
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@3.0-pro',
positivePrompt: 'Create a finished portrait-format blog hero for a serious museum conservation feature. Use reference image 1 to preserve the conservator’s recognizable face, navy work coat, gloves, rolled tapestry, and authentic collection-storage environment. Use reference image 2 to preserve the exact appearance, striped bristles, anatomy, and crimson wool setting of the carpet beetle larva. Combine both references into one coherent editorial photomontage: the conservator occupies the lower-right half, inspecting the tapestry beneath a focused task lamp, while an enlarged macro view of the beetle larva emerges across the upper-left as if revealed through a circular inspection lens. Make the scale shift intentional and scientifically legible, not a giant insect physically present in the room. Add subtle archival pest-monitoring details—small specimen pins, a paper inspection grid, fiber fragments, and restrained diagram lines—integrated around the macro inset.\n\nArt direction: sophisticated 1970s scientific-journal collage updated with crisp contemporary photographic detail; deep ultramarine shadows, acid-chartreuse annotation accents, warm ivory paper texture, and controlled crimson from the damaged wool. Investigative, intelligent, slightly tense, never horror or sensationalist. Strong depth, precise skin and textile texture, clean cut-paper transitions, restrained halftone grain, premium cultural-institution editorial design.\n\nReserve a calm ivory title field across the upper third without covering the larva’s head. Set the exact text “COLLECTIONS CARE” as a small uppercase kicker, “THE TINY THREAT” as the large two-line headline, and “Inside the quiet war against museum pests” as a smaller deck. Typography must be crisp, correctly spelled, highly legible, and limited to those three text elements. Use a condensed bold grotesque for the headline and a clean modern sans serif for the supporting text. Maintain generous margins and a clear reading hierarchy suitable for a museum journal blog hero and vertical social preview. One finished standalone editorial image, full bleed, no website interface, no browser frame, no logo, no buttons, no mockup.',
negativePrompt: 'Horror imagery, monstrous insect, giant insect physically attacking a person, gore, damaged face, extra fingers, distorted hands, incorrect beetle anatomy, duplicate person, duplicate larva, cluttered layout, illegible lettering, misspelled text, extra words, fake logo, website interface, browser window, navigation bar, social media UI, button, device mockup, low resolution, plastic skin, oversaturated colors, whimsical fantasy',
width: 1024,
height: 1536,
providerSettings: {
alibaba: {
promptExtend: true,
promptExtendMode: 'direct'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/9a8f6fd3-d850-4d4d-8391-753bd131d740.jpg',
'https://assets.runware.ai/assets/inputs/37a79aaf-684f-48f3-a0ca-512fe7289267.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@3.0-pro",
"positivePrompt": "Create a finished portrait-format blog hero for a serious museum conservation feature. Use reference image 1 to preserve the conservator’s recognizable face, navy work coat, gloves, rolled tapestry, and authentic collection-storage environment. Use reference image 2 to preserve the exact appearance, striped bristles, anatomy, and crimson wool setting of the carpet beetle larva. Combine both references into one coherent editorial photomontage: the conservator occupies the lower-right half, inspecting the tapestry beneath a focused task lamp, while an enlarged macro view of the beetle larva emerges across the upper-left as if revealed through a circular inspection lens. Make the scale shift intentional and scientifically legible, not a giant insect physically present in the room. Add subtle archival pest-monitoring details—small specimen pins, a paper inspection grid, fiber fragments, and restrained diagram lines—integrated around the macro inset.\n\nArt direction: sophisticated 1970s scientific-journal collage updated with crisp contemporary photographic detail; deep ultramarine shadows, acid-chartreuse annotation accents, warm ivory paper texture, and controlled crimson from the damaged wool. Investigative, intelligent, slightly tense, never horror or sensationalist. Strong depth, precise skin and textile texture, clean cut-paper transitions, restrained halftone grain, premium cultural-institution editorial design.\n\nReserve a calm ivory title field across the upper third without covering the larva’s head. Set the exact text “COLLECTIONS CARE” as a small uppercase kicker, “THE TINY THREAT” as the large two-line headline, and “Inside the quiet war against museum pests” as a smaller deck. Typography must be crisp, correctly spelled, highly legible, and limited to those three text elements. Use a condensed bold grotesque for the headline and a clean modern sans serif for the supporting text. Maintain generous margins and a clear reading hierarchy suitable for a museum journal blog hero and vertical social preview. One finished standalone editorial image, full bleed, no website interface, no browser frame, no logo, no buttons, no mockup.",
"negativePrompt": "Horror imagery, monstrous insect, giant insect physically attacking a person, gore, damaged face, extra fingers, distorted hands, incorrect beetle anatomy, duplicate person, duplicate larva, cluttered layout, illegible lettering, misspelled text, extra words, fake logo, website interface, browser window, navigation bar, social media UI, button, device mockup, low resolution, plastic skin, oversaturated colors, whimsical fantasy",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/9a8f6fd3-d850-4d4d-8391-753bd131d740.jpg",
"https://assets.runware.ai/assets/inputs/37a79aaf-684f-48f3-a0ca-512fe7289267.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": "754862c2-9b22-4b69-a980-e4cba32503cc",
"model": "alibaba:qwen-image@3.0-pro",
"positivePrompt": "Create a finished portrait-format blog hero for a serious museum conservation feature. Use reference image 1 to preserve the conservator’s recognizable face, navy work coat, gloves, rolled tapestry, and authentic collection-storage environment. Use reference image 2 to preserve the exact appearance, striped bristles, anatomy, and crimson wool setting of the carpet beetle larva. Combine both references into one coherent editorial photomontage: the conservator occupies the lower-right half, inspecting the tapestry beneath a focused task lamp, while an enlarged macro view of the beetle larva emerges across the upper-left as if revealed through a circular inspection lens. Make the scale shift intentional and scientifically legible, not a giant insect physically present in the room. Add subtle archival pest-monitoring details—small specimen pins, a paper inspection grid, fiber fragments, and restrained diagram lines—integrated around the macro inset.\n\nArt direction: sophisticated 1970s scientific-journal collage updated with crisp contemporary photographic detail; deep ultramarine shadows, acid-chartreuse annotation accents, warm ivory paper texture, and controlled crimson from the damaged wool. Investigative, intelligent, slightly tense, never horror or sensationalist. Strong depth, precise skin and textile texture, clean cut-paper transitions, restrained halftone grain, premium cultural-institution editorial design.\n\nReserve a calm ivory title field across the upper third without covering the larva’s head. Set the exact text “COLLECTIONS CARE” as a small uppercase kicker, “THE TINY THREAT” as the large two-line headline, and “Inside the quiet war against museum pests” as a smaller deck. Typography must be crisp, correctly spelled, highly legible, and limited to those three text elements. Use a condensed bold grotesque for the headline and a clean modern sans serif for the supporting text. Maintain generous margins and a clear reading hierarchy suitable for a museum journal blog hero and vertical social preview. One finished standalone editorial image, full bleed, no website interface, no browser frame, no logo, no buttons, no mockup.",
"negativePrompt": "Horror imagery, monstrous insect, giant insect physically attacking a person, gore, damaged face, extra fingers, distorted hands, incorrect beetle anatomy, duplicate person, duplicate larva, cluttered layout, illegible lettering, misspelled text, extra words, fake logo, website interface, browser window, navigation bar, social media UI, button, device mockup, low resolution, plastic skin, oversaturated colors, whimsical fantasy",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/9a8f6fd3-d850-4d4d-8391-753bd131d740.jpg",
"https://assets.runware.ai/assets/inputs/37a79aaf-684f-48f3-a0ca-512fe7289267.jpg"
]
}
}
]'runware run alibaba:qwen-image@3.0-pro \
positivePrompt="Create a finished portrait-format blog hero for a serious museum conservation feature. Use reference image 1 to preserve the conservator’s recognizable face, navy work coat, gloves, rolled tapestry, and authentic collection-storage environment. Use reference image 2 to preserve the exact appearance, striped bristles, anatomy, and crimson wool setting of the carpet beetle larva. Combine both references into one coherent editorial photomontage: the conservator occupies the lower-right half, inspecting the tapestry beneath a focused task lamp, while an enlarged macro view of the beetle larva emerges across the upper-left as if revealed through a circular inspection lens. Make the scale shift intentional and scientifically legible, not a giant insect physically present in the room. Add subtle archival pest-monitoring details—small specimen pins, a paper inspection grid, fiber fragments, and restrained diagram lines—integrated around the macro inset.
Art direction: sophisticated 1970s scientific-journal collage updated with crisp contemporary photographic detail; deep ultramarine shadows, acid-chartreuse annotation accents, warm ivory paper texture, and controlled crimson from the damaged wool. Investigative, intelligent, slightly tense, never horror or sensationalist. Strong depth, precise skin and textile texture, clean cut-paper transitions, restrained halftone grain, premium cultural-institution editorial design.
Reserve a calm ivory title field across the upper third without covering the larva’s head. Set the exact text “COLLECTIONS CARE” as a small uppercase kicker, “THE TINY THREAT” as the large two-line headline, and “Inside the quiet war against museum pests” as a smaller deck. Typography must be crisp, correctly spelled, highly legible, and limited to those three text elements. Use a condensed bold grotesque for the headline and a clean modern sans serif for the supporting text. Maintain generous margins and a clear reading hierarchy suitable for a museum journal blog hero and vertical social preview. One finished standalone editorial image, full bleed, no website interface, no browser frame, no logo, no buttons, no mockup." \
negativePrompt="Horror imagery, monstrous insect, giant insect physically attacking a person, gore, damaged face, extra fingers, distorted hands, incorrect beetle anatomy, duplicate person, duplicate larva, cluttered layout, illegible lettering, misspelled text, extra words, fake logo, website interface, browser window, navigation bar, social media UI, button, device mockup, low resolution, plastic skin, oversaturated colors, whimsical fantasy" \
width=1024 \
height=1536 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.promptExtendMode=direct \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/9a8f6fd3-d850-4d4d-8391-753bd131d740.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/37a79aaf-684f-48f3-a0ca-512fe7289267.jpg{
"taskType": "imageInference",
"taskUUID": "754862c2-9b22-4b69-a980-e4cba32503cc",
"model": "alibaba:qwen-image@3.0-pro",
"positivePrompt": "Create a finished portrait-format blog hero for a serious museum conservation feature. Use reference image 1 to preserve the conservator’s recognizable face, navy work coat, gloves, rolled tapestry, and authentic collection-storage environment. Use reference image 2 to preserve the exact appearance, striped bristles, anatomy, and crimson wool setting of the carpet beetle larva. Combine both references into one coherent editorial photomontage: the conservator occupies the lower-right half, inspecting the tapestry beneath a focused task lamp, while an enlarged macro view of the beetle larva emerges across the upper-left as if revealed through a circular inspection lens. Make the scale shift intentional and scientifically legible, not a giant insect physically present in the room. Add subtle archival pest-monitoring details—small specimen pins, a paper inspection grid, fiber fragments, and restrained diagram lines—integrated around the macro inset.\n\nArt direction: sophisticated 1970s scientific-journal collage updated with crisp contemporary photographic detail; deep ultramarine shadows, acid-chartreuse annotation accents, warm ivory paper texture, and controlled crimson from the damaged wool. Investigative, intelligent, slightly tense, never horror or sensationalist. Strong depth, precise skin and textile texture, clean cut-paper transitions, restrained halftone grain, premium cultural-institution editorial design.\n\nReserve a calm ivory title field across the upper third without covering the larva’s head. Set the exact text “COLLECTIONS CARE” as a small uppercase kicker, “THE TINY THREAT” as the large two-line headline, and “Inside the quiet war against museum pests” as a smaller deck. Typography must be crisp, correctly spelled, highly legible, and limited to those three text elements. Use a condensed bold grotesque for the headline and a clean modern sans serif for the supporting text. Maintain generous margins and a clear reading hierarchy suitable for a museum journal blog hero and vertical social preview. One finished standalone editorial image, full bleed, no website interface, no browser frame, no logo, no buttons, no mockup.",
"negativePrompt": "Horror imagery, monstrous insect, giant insect physically attacking a person, gore, damaged face, extra fingers, distorted hands, incorrect beetle anatomy, duplicate person, duplicate larva, cluttered layout, illegible lettering, misspelled text, extra words, fake logo, website interface, browser window, navigation bar, social media UI, button, device mockup, low resolution, plastic skin, oversaturated colors, whimsical fantasy",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/9a8f6fd3-d850-4d4d-8391-753bd131d740.jpg",
"https://assets.runware.ai/assets/inputs/37a79aaf-684f-48f3-a0ca-512fe7289267.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "754862c2-9b22-4b69-a980-e4cba32503cc",
"imageUUID": "c812592a-bc4d-4ca9-9266-4391aeb8b604",
"imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/c812592a-bc4d-4ca9-9266-4391aeb8b604.jpg",
"seed": 388436590,
"cost": 0.046
}Atlantic Dulse Carton Packaging

Create a finished photorealistic packaging visualization for an upscale smoked dulse seaweed product. Show one tall, slim folding-paper carton standing upright on a seamless warm gray studio surface, front panel facing the viewer with a narrow portion of the right side visible. Compose vertically so the carton fills most of the 1024x1536 portrait frame, with a subtle grounding shadow and ample neutral breathing room. Use reference image 1 as the direct botanical guide for the central dulse illustration: preserve the specimen's recognizable branching silhouette, delicate translucent fronds, burgundy-red coloration and organic imperfections. Render it as a refined archival herbarium image printed into the carton design, not as loose seaweed sitting in front of the package. Use reference image 2 as the guide for the supporting graphic system: adapt its coastline contours, sounding lines, coordinate grid and navigational marks into a restrained background pattern wrapping from the front onto the right side. Borrow the chart's visual rhythm and cartographic line quality, but do not copy any place names or existing text from the reference. Both references must feel deliberately integrated into one coherent label system: botanical specimen in the foreground, nautical survey geometry behind it. Art direction: a 1960s oceanographic field report reinterpreted as contemporary premium pantry packaging. Uncoated warm parchment board with visible paper fibers, deep oxblood botanical tones, marine navy linework, muted kelp green accents and one small flash of mineral orange. Precise editorial grid, generous margins, thin rules, compact sans-serif typography paired with a dignified high-contrast serif. Sophisticated, scientific, coastal and understated rather than rustic. Render the following front-panel wording clearly and exactly, with strong hierarchy: PELAGIC NO. 04 SMOKED DULSE Palmaria palmata HAND-HARVESTED SEA VEGETABLE NORTH ATLANTIC COAST NET WT 40 g / 1.4 oz Place “PELAGIC” at the top in spaced uppercase letters. Make “SMOKED DULSE” the dominant product name. Set the Latin name in small italic serif type directly beneath it. Include “NO. 04” inside a small mineral-orange survey-style index box. Keep the remaining copy legible but secondary. On the visible right side panel, add a narrow vertical label reading “SEA VEGETABLES” and continue the nautical coordinate grid around the fold. Show realistic print production details: crisp ink registration, subtle debossing on the word PELAGIC, matte uncoated stock, clean folded edges and believable carton thickness. Soft directional studio light from upper left, natural paper texture, restrained highlights, premium commercial product-render quality. The result must be a single complete package visualization, not a dieline, mood board, webpage, poster or collection of alternate concepts.
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@3.0-pro',
positivePrompt: 'Create a finished photorealistic packaging visualization for an upscale smoked dulse seaweed product. Show one tall, slim folding-paper carton standing upright on a seamless warm gray studio surface, front panel facing the viewer with a narrow portion of the right side visible. Compose vertically so the carton fills most of the 1024x1536 portrait frame, with a subtle grounding shadow and ample neutral breathing room.\n\nUse reference image 1 as the direct botanical guide for the central dulse illustration: preserve the specimen\'s recognizable branching silhouette, delicate translucent fronds, burgundy-red coloration and organic imperfections. Render it as a refined archival herbarium image printed into the carton design, not as loose seaweed sitting in front of the package.\n\nUse reference image 2 as the guide for the supporting graphic system: adapt its coastline contours, sounding lines, coordinate grid and navigational marks into a restrained background pattern wrapping from the front onto the right side. Borrow the chart\'s visual rhythm and cartographic line quality, but do not copy any place names or existing text from the reference. Both references must feel deliberately integrated into one coherent label system: botanical specimen in the foreground, nautical survey geometry behind it.\n\nArt direction: a 1960s oceanographic field report reinterpreted as contemporary premium pantry packaging. Uncoated warm parchment board with visible paper fibers, deep oxblood botanical tones, marine navy linework, muted kelp green accents and one small flash of mineral orange. Precise editorial grid, generous margins, thin rules, compact sans-serif typography paired with a dignified high-contrast serif. Sophisticated, scientific, coastal and understated rather than rustic.\n\nRender the following front-panel wording clearly and exactly, with strong hierarchy:\nPELAGIC\nNO. 04\nSMOKED DULSE\nPalmaria palmata\nHAND-HARVESTED SEA VEGETABLE\nNORTH ATLANTIC COAST\nNET WT 40 g / 1.4 oz\n\nPlace “PELAGIC” at the top in spaced uppercase letters. Make “SMOKED DULSE” the dominant product name. Set the Latin name in small italic serif type directly beneath it. Include “NO. 04” inside a small mineral-orange survey-style index box. Keep the remaining copy legible but secondary. On the visible right side panel, add a narrow vertical label reading “SEA VEGETABLES” and continue the nautical coordinate grid around the fold.\n\nShow realistic print production details: crisp ink registration, subtle debossing on the word PELAGIC, matte uncoated stock, clean folded edges and believable carton thickness. Soft directional studio light from upper left, natural paper texture, restrained highlights, premium commercial product-render quality. The result must be a single complete package visualization, not a dieline, mood board, webpage, poster or collection of alternate concepts.',
negativePrompt: 'Illegible typography, misspelled text, extra wording, copied chart place names, multiple packages, cans, bottles, plastic pouch, loose seaweed obscuring the carton, rustic craft aesthetic, bright tropical colors, glossy laminate, excessive gold foil, cluttered layout, barcode on front, website interface, mockup template labels, hands, people, dramatic scenery, warped carton, bent typography, low-resolution print, blurry details',
width: 1024,
height: 1536,
providerSettings: {
alibaba: {
promptExtend: true,
promptExtendMode: 'direct'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/5cff7cc9-7f2c-43b7-99bb-c1908527e447.jpg',
'https://assets.runware.ai/assets/inputs/c2755f11-4cda-4d73-bdf0-2f3893c556db.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@3.0-pro",
"positivePrompt": "Create a finished photorealistic packaging visualization for an upscale smoked dulse seaweed product. Show one tall, slim folding-paper carton standing upright on a seamless warm gray studio surface, front panel facing the viewer with a narrow portion of the right side visible. Compose vertically so the carton fills most of the 1024x1536 portrait frame, with a subtle grounding shadow and ample neutral breathing room.\n\nUse reference image 1 as the direct botanical guide for the central dulse illustration: preserve the specimen's recognizable branching silhouette, delicate translucent fronds, burgundy-red coloration and organic imperfections. Render it as a refined archival herbarium image printed into the carton design, not as loose seaweed sitting in front of the package.\n\nUse reference image 2 as the guide for the supporting graphic system: adapt its coastline contours, sounding lines, coordinate grid and navigational marks into a restrained background pattern wrapping from the front onto the right side. Borrow the chart's visual rhythm and cartographic line quality, but do not copy any place names or existing text from the reference. Both references must feel deliberately integrated into one coherent label system: botanical specimen in the foreground, nautical survey geometry behind it.\n\nArt direction: a 1960s oceanographic field report reinterpreted as contemporary premium pantry packaging. Uncoated warm parchment board with visible paper fibers, deep oxblood botanical tones, marine navy linework, muted kelp green accents and one small flash of mineral orange. Precise editorial grid, generous margins, thin rules, compact sans-serif typography paired with a dignified high-contrast serif. Sophisticated, scientific, coastal and understated rather than rustic.\n\nRender the following front-panel wording clearly and exactly, with strong hierarchy:\nPELAGIC\nNO. 04\nSMOKED DULSE\nPalmaria palmata\nHAND-HARVESTED SEA VEGETABLE\nNORTH ATLANTIC COAST\nNET WT 40 g / 1.4 oz\n\nPlace “PELAGIC” at the top in spaced uppercase letters. Make “SMOKED DULSE” the dominant product name. Set the Latin name in small italic serif type directly beneath it. Include “NO. 04” inside a small mineral-orange survey-style index box. Keep the remaining copy legible but secondary. On the visible right side panel, add a narrow vertical label reading “SEA VEGETABLES” and continue the nautical coordinate grid around the fold.\n\nShow realistic print production details: crisp ink registration, subtle debossing on the word PELAGIC, matte uncoated stock, clean folded edges and believable carton thickness. Soft directional studio light from upper left, natural paper texture, restrained highlights, premium commercial product-render quality. The result must be a single complete package visualization, not a dieline, mood board, webpage, poster or collection of alternate concepts.",
"negativePrompt": "Illegible typography, misspelled text, extra wording, copied chart place names, multiple packages, cans, bottles, plastic pouch, loose seaweed obscuring the carton, rustic craft aesthetic, bright tropical colors, glossy laminate, excessive gold foil, cluttered layout, barcode on front, website interface, mockup template labels, hands, people, dramatic scenery, warped carton, bent typography, low-resolution print, blurry details",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/5cff7cc9-7f2c-43b7-99bb-c1908527e447.jpg",
"https://assets.runware.ai/assets/inputs/c2755f11-4cda-4d73-bdf0-2f3893c556db.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": "df553d60-d1d5-4122-a26a-e5473503335f",
"model": "alibaba:qwen-image@3.0-pro",
"positivePrompt": "Create a finished photorealistic packaging visualization for an upscale smoked dulse seaweed product. Show one tall, slim folding-paper carton standing upright on a seamless warm gray studio surface, front panel facing the viewer with a narrow portion of the right side visible. Compose vertically so the carton fills most of the 1024x1536 portrait frame, with a subtle grounding shadow and ample neutral breathing room.\n\nUse reference image 1 as the direct botanical guide for the central dulse illustration: preserve the specimen's recognizable branching silhouette, delicate translucent fronds, burgundy-red coloration and organic imperfections. Render it as a refined archival herbarium image printed into the carton design, not as loose seaweed sitting in front of the package.\n\nUse reference image 2 as the guide for the supporting graphic system: adapt its coastline contours, sounding lines, coordinate grid and navigational marks into a restrained background pattern wrapping from the front onto the right side. Borrow the chart's visual rhythm and cartographic line quality, but do not copy any place names or existing text from the reference. Both references must feel deliberately integrated into one coherent label system: botanical specimen in the foreground, nautical survey geometry behind it.\n\nArt direction: a 1960s oceanographic field report reinterpreted as contemporary premium pantry packaging. Uncoated warm parchment board with visible paper fibers, deep oxblood botanical tones, marine navy linework, muted kelp green accents and one small flash of mineral orange. Precise editorial grid, generous margins, thin rules, compact sans-serif typography paired with a dignified high-contrast serif. Sophisticated, scientific, coastal and understated rather than rustic.\n\nRender the following front-panel wording clearly and exactly, with strong hierarchy:\nPELAGIC\nNO. 04\nSMOKED DULSE\nPalmaria palmata\nHAND-HARVESTED SEA VEGETABLE\nNORTH ATLANTIC COAST\nNET WT 40 g / 1.4 oz\n\nPlace “PELAGIC” at the top in spaced uppercase letters. Make “SMOKED DULSE” the dominant product name. Set the Latin name in small italic serif type directly beneath it. Include “NO. 04” inside a small mineral-orange survey-style index box. Keep the remaining copy legible but secondary. On the visible right side panel, add a narrow vertical label reading “SEA VEGETABLES” and continue the nautical coordinate grid around the fold.\n\nShow realistic print production details: crisp ink registration, subtle debossing on the word PELAGIC, matte uncoated stock, clean folded edges and believable carton thickness. Soft directional studio light from upper left, natural paper texture, restrained highlights, premium commercial product-render quality. The result must be a single complete package visualization, not a dieline, mood board, webpage, poster or collection of alternate concepts.",
"negativePrompt": "Illegible typography, misspelled text, extra wording, copied chart place names, multiple packages, cans, bottles, plastic pouch, loose seaweed obscuring the carton, rustic craft aesthetic, bright tropical colors, glossy laminate, excessive gold foil, cluttered layout, barcode on front, website interface, mockup template labels, hands, people, dramatic scenery, warped carton, bent typography, low-resolution print, blurry details",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/5cff7cc9-7f2c-43b7-99bb-c1908527e447.jpg",
"https://assets.runware.ai/assets/inputs/c2755f11-4cda-4d73-bdf0-2f3893c556db.jpg"
]
}
}
]'runware run alibaba:qwen-image@3.0-pro \
positivePrompt="Create a finished photorealistic packaging visualization for an upscale smoked dulse seaweed product. Show one tall, slim folding-paper carton standing upright on a seamless warm gray studio surface, front panel facing the viewer with a narrow portion of the right side visible. Compose vertically so the carton fills most of the 1024x1536 portrait frame, with a subtle grounding shadow and ample neutral breathing room.
Use reference image 1 as the direct botanical guide for the central dulse illustration: preserve the specimen's recognizable branching silhouette, delicate translucent fronds, burgundy-red coloration and organic imperfections. Render it as a refined archival herbarium image printed into the carton design, not as loose seaweed sitting in front of the package.
Use reference image 2 as the guide for the supporting graphic system: adapt its coastline contours, sounding lines, coordinate grid and navigational marks into a restrained background pattern wrapping from the front onto the right side. Borrow the chart's visual rhythm and cartographic line quality, but do not copy any place names or existing text from the reference. Both references must feel deliberately integrated into one coherent label system: botanical specimen in the foreground, nautical survey geometry behind it.
Art direction: a 1960s oceanographic field report reinterpreted as contemporary premium pantry packaging. Uncoated warm parchment board with visible paper fibers, deep oxblood botanical tones, marine navy linework, muted kelp green accents and one small flash of mineral orange. Precise editorial grid, generous margins, thin rules, compact sans-serif typography paired with a dignified high-contrast serif. Sophisticated, scientific, coastal and understated rather than rustic.
Render the following front-panel wording clearly and exactly, with strong hierarchy:
PELAGIC
NO. 04
SMOKED DULSE
Palmaria palmata
HAND-HARVESTED SEA VEGETABLE
NORTH ATLANTIC COAST
NET WT 40 g / 1.4 oz
Place “PELAGIC” at the top in spaced uppercase letters. Make “SMOKED DULSE” the dominant product name. Set the Latin name in small italic serif type directly beneath it. Include “NO. 04” inside a small mineral-orange survey-style index box. Keep the remaining copy legible but secondary. On the visible right side panel, add a narrow vertical label reading “SEA VEGETABLES” and continue the nautical coordinate grid around the fold.
Show realistic print production details: crisp ink registration, subtle debossing on the word PELAGIC, matte uncoated stock, clean folded edges and believable carton thickness. Soft directional studio light from upper left, natural paper texture, restrained highlights, premium commercial product-render quality. The result must be a single complete package visualization, not a dieline, mood board, webpage, poster or collection of alternate concepts." \
negativePrompt="Illegible typography, misspelled text, extra wording, copied chart place names, multiple packages, cans, bottles, plastic pouch, loose seaweed obscuring the carton, rustic craft aesthetic, bright tropical colors, glossy laminate, excessive gold foil, cluttered layout, barcode on front, website interface, mockup template labels, hands, people, dramatic scenery, warped carton, bent typography, low-resolution print, blurry details" \
width=1024 \
height=1536 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.promptExtendMode=direct \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/5cff7cc9-7f2c-43b7-99bb-c1908527e447.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/c2755f11-4cda-4d73-bdf0-2f3893c556db.jpg{
"taskType": "imageInference",
"taskUUID": "df553d60-d1d5-4122-a26a-e5473503335f",
"model": "alibaba:qwen-image@3.0-pro",
"positivePrompt": "Create a finished photorealistic packaging visualization for an upscale smoked dulse seaweed product. Show one tall, slim folding-paper carton standing upright on a seamless warm gray studio surface, front panel facing the viewer with a narrow portion of the right side visible. Compose vertically so the carton fills most of the 1024x1536 portrait frame, with a subtle grounding shadow and ample neutral breathing room.\n\nUse reference image 1 as the direct botanical guide for the central dulse illustration: preserve the specimen's recognizable branching silhouette, delicate translucent fronds, burgundy-red coloration and organic imperfections. Render it as a refined archival herbarium image printed into the carton design, not as loose seaweed sitting in front of the package.\n\nUse reference image 2 as the guide for the supporting graphic system: adapt its coastline contours, sounding lines, coordinate grid and navigational marks into a restrained background pattern wrapping from the front onto the right side. Borrow the chart's visual rhythm and cartographic line quality, but do not copy any place names or existing text from the reference. Both references must feel deliberately integrated into one coherent label system: botanical specimen in the foreground, nautical survey geometry behind it.\n\nArt direction: a 1960s oceanographic field report reinterpreted as contemporary premium pantry packaging. Uncoated warm parchment board with visible paper fibers, deep oxblood botanical tones, marine navy linework, muted kelp green accents and one small flash of mineral orange. Precise editorial grid, generous margins, thin rules, compact sans-serif typography paired with a dignified high-contrast serif. Sophisticated, scientific, coastal and understated rather than rustic.\n\nRender the following front-panel wording clearly and exactly, with strong hierarchy:\nPELAGIC\nNO. 04\nSMOKED DULSE\nPalmaria palmata\nHAND-HARVESTED SEA VEGETABLE\nNORTH ATLANTIC COAST\nNET WT 40 g / 1.4 oz\n\nPlace “PELAGIC” at the top in spaced uppercase letters. Make “SMOKED DULSE” the dominant product name. Set the Latin name in small italic serif type directly beneath it. Include “NO. 04” inside a small mineral-orange survey-style index box. Keep the remaining copy legible but secondary. On the visible right side panel, add a narrow vertical label reading “SEA VEGETABLES” and continue the nautical coordinate grid around the fold.\n\nShow realistic print production details: crisp ink registration, subtle debossing on the word PELAGIC, matte uncoated stock, clean folded edges and believable carton thickness. Soft directional studio light from upper left, natural paper texture, restrained highlights, premium commercial product-render quality. The result must be a single complete package visualization, not a dieline, mood board, webpage, poster or collection of alternate concepts.",
"negativePrompt": "Illegible typography, misspelled text, extra wording, copied chart place names, multiple packages, cans, bottles, plastic pouch, loose seaweed obscuring the carton, rustic craft aesthetic, bright tropical colors, glossy laminate, excessive gold foil, cluttered layout, barcode on front, website interface, mockup template labels, hands, people, dramatic scenery, warped carton, bent typography, low-resolution print, blurry details",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/5cff7cc9-7f2c-43b7-99bb-c1908527e447.jpg",
"https://assets.runware.ai/assets/inputs/c2755f11-4cda-4d73-bdf0-2f3893c556db.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "df553d60-d1d5-4122-a26a-e5473503335f",
"imageUUID": "dfc856db-5ff4-45e6-82df-daeb305e4ed8",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/dfc856db-5ff4-45e6-82df-daeb305e4ed8.jpg",
"seed": 496760881,
"cost": 0.046
}