GPT Image 1.5

GPT Image 1.5 is OpenAI’s newest flagship image model powering the latest ChatGPT Images. It delivers significantly faster image generation with stronger instruction following, more precise edits that preserve original details, more believable transformations, and improved rendering of dense or small text. It is suited for practical creative workflows, detailed design tasks, and production use cases.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
This model is deprecated and will be deactivated on December 1, 2026. Migrate to GPT Image 2.
Marine Emergency Signal Kit Packshot

Create a premium ecommerce product packshot of a complete marine emergency signaling kit. Center an open, rugged safety-orange waterproof carrying case in a three-quarter front view, with charcoal-gray latches, a black rubber perimeter seal, a sturdy molded handle, and precisely fitted dark navy closed-cell foam inside. Arrange the contents clearly and logically: two cylindrical red hand flares, one compact orange smoke signal canister, a navy LED distress beacon with a translucent lens, an orange signal whistle on a short black cord, and a neatly coiled reflective rescue line. Keep several items secured in their foam cutouts and place one hand flare, the beacon, and the whistle upright in front of the case so shoppers can inspect their forms. Every object must be complete, correctly proportioned, physically plausible, and visually distinct, with clean manufacturing details and no duplicated accessories. Use a restrained industrial palette of safety orange, signal red, dark navy, charcoal, and brushed metal. Photograph the kit against a seamless warm light-gray studio background with a soft floor gradient. High-key commercial lighting: a large diffused key from upper left, gentle fill from the front, crisp controlled rim light along the case edges, realistic contact shadows, subtle reflections on plastic and metal, and excellent texture definition without harsh glare. Square composition with generous even margins, product occupying roughly 78 percent of the frame, camera at product height with a slightly elevated view so both the interior organization and front-facing items are visible. Sharp focus throughout, realistic product photography, accurate materials, polished catalogue retouching, neutral color balance, no dramatic environment and no decorative props. Render only these prominent generic labels, exactly as written and clearly legible: on the case lid, “OFFSHORE SIGNAL KIT” with the smaller line “FOR MARINE EMERGENCY USE”; on each red cylinder, “RED HAND FLARE”; on the orange canister, “ORANGE SMOKE SIGNAL”; on the beacon, “LED DISTRESS BEACON” and a small “SOS” button label. Use clean condensed sans-serif safety typography printed directly on the products. Do not invent a company name, brand logo, certification mark, website, price, barcode, promotional badge, or additional copy. The final image must be a single isolated ecommerce packshot, not packaging artwork, not a lifestyle scene, and not a website or app 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: 'openai:4@1',
positivePrompt: 'Create a premium ecommerce product packshot of a complete marine emergency signaling kit. Center an open, rugged safety-orange waterproof carrying case in a three-quarter front view, with charcoal-gray latches, a black rubber perimeter seal, a sturdy molded handle, and precisely fitted dark navy closed-cell foam inside. Arrange the contents clearly and logically: two cylindrical red hand flares, one compact orange smoke signal canister, a navy LED distress beacon with a translucent lens, an orange signal whistle on a short black cord, and a neatly coiled reflective rescue line. Keep several items secured in their foam cutouts and place one hand flare, the beacon, and the whistle upright in front of the case so shoppers can inspect their forms. Every object must be complete, correctly proportioned, physically plausible, and visually distinct, with clean manufacturing details and no duplicated accessories.\n\nUse a restrained industrial palette of safety orange, signal red, dark navy, charcoal, and brushed metal. Photograph the kit against a seamless warm light-gray studio background with a soft floor gradient. High-key commercial lighting: a large diffused key from upper left, gentle fill from the front, crisp controlled rim light along the case edges, realistic contact shadows, subtle reflections on plastic and metal, and excellent texture definition without harsh glare. Square composition with generous even margins, product occupying roughly 78 percent of the frame, camera at product height with a slightly elevated view so both the interior organization and front-facing items are visible. Sharp focus throughout, realistic product photography, accurate materials, polished catalogue retouching, neutral color balance, no dramatic environment and no decorative props.\n\nRender only these prominent generic labels, exactly as written and clearly legible: on the case lid, “OFFSHORE SIGNAL KIT” with the smaller line “FOR MARINE EMERGENCY USE”; on each red cylinder, “RED HAND FLARE”; on the orange canister, “ORANGE SMOKE SIGNAL”; on the beacon, “LED DISTRESS BEACON” and a small “SOS” button label. Use clean condensed sans-serif safety typography printed directly on the products. Do not invent a company name, brand logo, certification mark, website, price, barcode, promotional badge, or additional copy. The final image must be a single isolated ecommerce packshot, not packaging artwork, not a lifestyle scene, and not a website or app mockup.',
width: 1024,
height: 1024,
providerSettings: {
openai: {
quality: 'high'
}
}
})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": "openai:4@1",
"positivePrompt": "Create a premium ecommerce product packshot of a complete marine emergency signaling kit. Center an open, rugged safety-orange waterproof carrying case in a three-quarter front view, with charcoal-gray latches, a black rubber perimeter seal, a sturdy molded handle, and precisely fitted dark navy closed-cell foam inside. Arrange the contents clearly and logically: two cylindrical red hand flares, one compact orange smoke signal canister, a navy LED distress beacon with a translucent lens, an orange signal whistle on a short black cord, and a neatly coiled reflective rescue line. Keep several items secured in their foam cutouts and place one hand flare, the beacon, and the whistle upright in front of the case so shoppers can inspect their forms. Every object must be complete, correctly proportioned, physically plausible, and visually distinct, with clean manufacturing details and no duplicated accessories.\n\nUse a restrained industrial palette of safety orange, signal red, dark navy, charcoal, and brushed metal. Photograph the kit against a seamless warm light-gray studio background with a soft floor gradient. High-key commercial lighting: a large diffused key from upper left, gentle fill from the front, crisp controlled rim light along the case edges, realistic contact shadows, subtle reflections on plastic and metal, and excellent texture definition without harsh glare. Square composition with generous even margins, product occupying roughly 78 percent of the frame, camera at product height with a slightly elevated view so both the interior organization and front-facing items are visible. Sharp focus throughout, realistic product photography, accurate materials, polished catalogue retouching, neutral color balance, no dramatic environment and no decorative props.\n\nRender only these prominent generic labels, exactly as written and clearly legible: on the case lid, “OFFSHORE SIGNAL KIT” with the smaller line “FOR MARINE EMERGENCY USE”; on each red cylinder, “RED HAND FLARE”; on the orange canister, “ORANGE SMOKE SIGNAL”; on the beacon, “LED DISTRESS BEACON” and a small “SOS” button label. Use clean condensed sans-serif safety typography printed directly on the products. Do not invent a company name, brand logo, certification mark, website, price, barcode, promotional badge, or additional copy. The final image must be a single isolated ecommerce packshot, not packaging artwork, not a lifestyle scene, and not a website or app mockup.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "d9ba2631-25f9-4107-9d9d-81484e1075a5",
"model": "openai:4@1",
"positivePrompt": "Create a premium ecommerce product packshot of a complete marine emergency signaling kit. Center an open, rugged safety-orange waterproof carrying case in a three-quarter front view, with charcoal-gray latches, a black rubber perimeter seal, a sturdy molded handle, and precisely fitted dark navy closed-cell foam inside. Arrange the contents clearly and logically: two cylindrical red hand flares, one compact orange smoke signal canister, a navy LED distress beacon with a translucent lens, an orange signal whistle on a short black cord, and a neatly coiled reflective rescue line. Keep several items secured in their foam cutouts and place one hand flare, the beacon, and the whistle upright in front of the case so shoppers can inspect their forms. Every object must be complete, correctly proportioned, physically plausible, and visually distinct, with clean manufacturing details and no duplicated accessories.\n\nUse a restrained industrial palette of safety orange, signal red, dark navy, charcoal, and brushed metal. Photograph the kit against a seamless warm light-gray studio background with a soft floor gradient. High-key commercial lighting: a large diffused key from upper left, gentle fill from the front, crisp controlled rim light along the case edges, realistic contact shadows, subtle reflections on plastic and metal, and excellent texture definition without harsh glare. Square composition with generous even margins, product occupying roughly 78 percent of the frame, camera at product height with a slightly elevated view so both the interior organization and front-facing items are visible. Sharp focus throughout, realistic product photography, accurate materials, polished catalogue retouching, neutral color balance, no dramatic environment and no decorative props.\n\nRender only these prominent generic labels, exactly as written and clearly legible: on the case lid, “OFFSHORE SIGNAL KIT” with the smaller line “FOR MARINE EMERGENCY USE”; on each red cylinder, “RED HAND FLARE”; on the orange canister, “ORANGE SMOKE SIGNAL”; on the beacon, “LED DISTRESS BEACON” and a small “SOS” button label. Use clean condensed sans-serif safety typography printed directly on the products. Do not invent a company name, brand logo, certification mark, website, price, barcode, promotional badge, or additional copy. The final image must be a single isolated ecommerce packshot, not packaging artwork, not a lifestyle scene, and not a website or app mockup.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high"
}
}
}
]'runware run openai:4@1 \
positivePrompt="Create a premium ecommerce product packshot of a complete marine emergency signaling kit. Center an open, rugged safety-orange waterproof carrying case in a three-quarter front view, with charcoal-gray latches, a black rubber perimeter seal, a sturdy molded handle, and precisely fitted dark navy closed-cell foam inside. Arrange the contents clearly and logically: two cylindrical red hand flares, one compact orange smoke signal canister, a navy LED distress beacon with a translucent lens, an orange signal whistle on a short black cord, and a neatly coiled reflective rescue line. Keep several items secured in their foam cutouts and place one hand flare, the beacon, and the whistle upright in front of the case so shoppers can inspect their forms. Every object must be complete, correctly proportioned, physically plausible, and visually distinct, with clean manufacturing details and no duplicated accessories.
Use a restrained industrial palette of safety orange, signal red, dark navy, charcoal, and brushed metal. Photograph the kit against a seamless warm light-gray studio background with a soft floor gradient. High-key commercial lighting: a large diffused key from upper left, gentle fill from the front, crisp controlled rim light along the case edges, realistic contact shadows, subtle reflections on plastic and metal, and excellent texture definition without harsh glare. Square composition with generous even margins, product occupying roughly 78 percent of the frame, camera at product height with a slightly elevated view so both the interior organization and front-facing items are visible. Sharp focus throughout, realistic product photography, accurate materials, polished catalogue retouching, neutral color balance, no dramatic environment and no decorative props.
Render only these prominent generic labels, exactly as written and clearly legible: on the case lid, “OFFSHORE SIGNAL KIT” with the smaller line “FOR MARINE EMERGENCY USE”; on each red cylinder, “RED HAND FLARE”; on the orange canister, “ORANGE SMOKE SIGNAL”; on the beacon, “LED DISTRESS BEACON” and a small “SOS” button label. Use clean condensed sans-serif safety typography printed directly on the products. Do not invent a company name, brand logo, certification mark, website, price, barcode, promotional badge, or additional copy. The final image must be a single isolated ecommerce packshot, not packaging artwork, not a lifestyle scene, and not a website or app mockup." \
width=1024 \
height=1024 \
providerSettings.openai.quality=high{
"taskType": "imageInference",
"taskUUID": "d9ba2631-25f9-4107-9d9d-81484e1075a5",
"model": "openai:4@1",
"positivePrompt": "Create a premium ecommerce product packshot of a complete marine emergency signaling kit. Center an open, rugged safety-orange waterproof carrying case in a three-quarter front view, with charcoal-gray latches, a black rubber perimeter seal, a sturdy molded handle, and precisely fitted dark navy closed-cell foam inside. Arrange the contents clearly and logically: two cylindrical red hand flares, one compact orange smoke signal canister, a navy LED distress beacon with a translucent lens, an orange signal whistle on a short black cord, and a neatly coiled reflective rescue line. Keep several items secured in their foam cutouts and place one hand flare, the beacon, and the whistle upright in front of the case so shoppers can inspect their forms. Every object must be complete, correctly proportioned, physically plausible, and visually distinct, with clean manufacturing details and no duplicated accessories.\n\nUse a restrained industrial palette of safety orange, signal red, dark navy, charcoal, and brushed metal. Photograph the kit against a seamless warm light-gray studio background with a soft floor gradient. High-key commercial lighting: a large diffused key from upper left, gentle fill from the front, crisp controlled rim light along the case edges, realistic contact shadows, subtle reflections on plastic and metal, and excellent texture definition without harsh glare. Square composition with generous even margins, product occupying roughly 78 percent of the frame, camera at product height with a slightly elevated view so both the interior organization and front-facing items are visible. Sharp focus throughout, realistic product photography, accurate materials, polished catalogue retouching, neutral color balance, no dramatic environment and no decorative props.\n\nRender only these prominent generic labels, exactly as written and clearly legible: on the case lid, “OFFSHORE SIGNAL KIT” with the smaller line “FOR MARINE EMERGENCY USE”; on each red cylinder, “RED HAND FLARE”; on the orange canister, “ORANGE SMOKE SIGNAL”; on the beacon, “LED DISTRESS BEACON” and a small “SOS” button label. Use clean condensed sans-serif safety typography printed directly on the products. Do not invent a company name, brand logo, certification mark, website, price, barcode, promotional badge, or additional copy. The final image must be a single isolated ecommerce packshot, not packaging artwork, not a lifestyle scene, and not a website or app mockup.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high"
}
}
}{
"taskType": "imageInference",
"taskUUID": "d9ba2631-25f9-4107-9d9d-81484e1075a5",
"imageUUID": "32cb7117-8e55-4613-839f-8bdf9d2bd393",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/32cb7117-8e55-4613-839f-8bdf9d2bd393.jpg",
"cost": 0.135535
}Quilted Lineworker Archive Portrait

Create a finished square commemorative artwork that looks like a 1970s documentary photograph transformed into a handmade American story quilt. Depict five rural electrical lineworkers—three women and two men—standing beside a weathered bucket truck after repairing storm damage. Preserve the convincing composition and candid specificity of an archival crew photo: full figures arranged in a loose row, one worker resting a gloved hand on a coiled cable, another holding a hard hat at her hip, utility poles and repaired power lines receding across flat farmland behind them. Their expressions are tired, proud, and understated rather than heroic poses. Render every element as layered fabric appliqué, dense hand embroidery, visible running stitches, quilted seams, frayed denim edges, corduroy, canvas, wool felt, and tiny thread highlights. Faces must remain recognizable and anatomically coherent despite the textile treatment. Construct the bucket truck, insulators, tool belts, work boots, gloves, cable, and pole hardware with accurate, readable shapes. Use a restrained heritage palette of faded indigo, workwear tan, rust orange, mustard yellow, brick red, warm cream, and charcoal, with subtle variations from aged cloth. The cloudy post-storm sky should be assembled from broad overlapping fabric panels, while fine embroidered lines describe rain, electrical wires, and windblown grass. Front-facing, balanced square composition with the crew occupying the central two-thirds and enough environmental context to establish rural utility work. Soft overcast lighting translated into fabric value changes; tactile shadows cast by raised seams and appliqué layers. Authentic handmade imperfections, but polished enough for a museum exhibition graphic. No frame, wall, room, mockup, logos, captions, borders, watermarks, or added typography; the textile artwork itself fills the entire image.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:4@1',
positivePrompt: 'Create a finished square commemorative artwork that looks like a 1970s documentary photograph transformed into a handmade American story quilt. Depict five rural electrical lineworkers—three women and two men—standing beside a weathered bucket truck after repairing storm damage. Preserve the convincing composition and candid specificity of an archival crew photo: full figures arranged in a loose row, one worker resting a gloved hand on a coiled cable, another holding a hard hat at her hip, utility poles and repaired power lines receding across flat farmland behind them. Their expressions are tired, proud, and understated rather than heroic poses.\n\nRender every element as layered fabric appliqué, dense hand embroidery, visible running stitches, quilted seams, frayed denim edges, corduroy, canvas, wool felt, and tiny thread highlights. Faces must remain recognizable and anatomically coherent despite the textile treatment. Construct the bucket truck, insulators, tool belts, work boots, gloves, cable, and pole hardware with accurate, readable shapes. Use a restrained heritage palette of faded indigo, workwear tan, rust orange, mustard yellow, brick red, warm cream, and charcoal, with subtle variations from aged cloth. The cloudy post-storm sky should be assembled from broad overlapping fabric panels, while fine embroidered lines describe rain, electrical wires, and windblown grass.\n\nFront-facing, balanced square composition with the crew occupying the central two-thirds and enough environmental context to establish rural utility work. Soft overcast lighting translated into fabric value changes; tactile shadows cast by raised seams and appliqué layers. Authentic handmade imperfections, but polished enough for a museum exhibition graphic. No frame, wall, room, mockup, logos, captions, borders, watermarks, or added typography; the textile artwork itself fills the entire image.',
width: 1024,
height: 1024,
providerSettings: {
openai: {
quality: 'high'
}
}
})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": "openai:4@1",
"positivePrompt": "Create a finished square commemorative artwork that looks like a 1970s documentary photograph transformed into a handmade American story quilt. Depict five rural electrical lineworkers—three women and two men—standing beside a weathered bucket truck after repairing storm damage. Preserve the convincing composition and candid specificity of an archival crew photo: full figures arranged in a loose row, one worker resting a gloved hand on a coiled cable, another holding a hard hat at her hip, utility poles and repaired power lines receding across flat farmland behind them. Their expressions are tired, proud, and understated rather than heroic poses.\n\nRender every element as layered fabric appliqué, dense hand embroidery, visible running stitches, quilted seams, frayed denim edges, corduroy, canvas, wool felt, and tiny thread highlights. Faces must remain recognizable and anatomically coherent despite the textile treatment. Construct the bucket truck, insulators, tool belts, work boots, gloves, cable, and pole hardware with accurate, readable shapes. Use a restrained heritage palette of faded indigo, workwear tan, rust orange, mustard yellow, brick red, warm cream, and charcoal, with subtle variations from aged cloth. The cloudy post-storm sky should be assembled from broad overlapping fabric panels, while fine embroidered lines describe rain, electrical wires, and windblown grass.\n\nFront-facing, balanced square composition with the crew occupying the central two-thirds and enough environmental context to establish rural utility work. Soft overcast lighting translated into fabric value changes; tactile shadows cast by raised seams and appliqué layers. Authentic handmade imperfections, but polished enough for a museum exhibition graphic. No frame, wall, room, mockup, logos, captions, borders, watermarks, or added typography; the textile artwork itself fills the entire image.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "b4dcb0b5-f12d-4f39-aab7-b1fe33e41c07",
"model": "openai:4@1",
"positivePrompt": "Create a finished square commemorative artwork that looks like a 1970s documentary photograph transformed into a handmade American story quilt. Depict five rural electrical lineworkers—three women and two men—standing beside a weathered bucket truck after repairing storm damage. Preserve the convincing composition and candid specificity of an archival crew photo: full figures arranged in a loose row, one worker resting a gloved hand on a coiled cable, another holding a hard hat at her hip, utility poles and repaired power lines receding across flat farmland behind them. Their expressions are tired, proud, and understated rather than heroic poses.\n\nRender every element as layered fabric appliqué, dense hand embroidery, visible running stitches, quilted seams, frayed denim edges, corduroy, canvas, wool felt, and tiny thread highlights. Faces must remain recognizable and anatomically coherent despite the textile treatment. Construct the bucket truck, insulators, tool belts, work boots, gloves, cable, and pole hardware with accurate, readable shapes. Use a restrained heritage palette of faded indigo, workwear tan, rust orange, mustard yellow, brick red, warm cream, and charcoal, with subtle variations from aged cloth. The cloudy post-storm sky should be assembled from broad overlapping fabric panels, while fine embroidered lines describe rain, electrical wires, and windblown grass.\n\nFront-facing, balanced square composition with the crew occupying the central two-thirds and enough environmental context to establish rural utility work. Soft overcast lighting translated into fabric value changes; tactile shadows cast by raised seams and appliqué layers. Authentic handmade imperfections, but polished enough for a museum exhibition graphic. No frame, wall, room, mockup, logos, captions, borders, watermarks, or added typography; the textile artwork itself fills the entire image.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high"
}
}
}
]'runware run openai:4@1 \
positivePrompt="Create a finished square commemorative artwork that looks like a 1970s documentary photograph transformed into a handmade American story quilt. Depict five rural electrical lineworkers—three women and two men—standing beside a weathered bucket truck after repairing storm damage. Preserve the convincing composition and candid specificity of an archival crew photo: full figures arranged in a loose row, one worker resting a gloved hand on a coiled cable, another holding a hard hat at her hip, utility poles and repaired power lines receding across flat farmland behind them. Their expressions are tired, proud, and understated rather than heroic poses.
Render every element as layered fabric appliqué, dense hand embroidery, visible running stitches, quilted seams, frayed denim edges, corduroy, canvas, wool felt, and tiny thread highlights. Faces must remain recognizable and anatomically coherent despite the textile treatment. Construct the bucket truck, insulators, tool belts, work boots, gloves, cable, and pole hardware with accurate, readable shapes. Use a restrained heritage palette of faded indigo, workwear tan, rust orange, mustard yellow, brick red, warm cream, and charcoal, with subtle variations from aged cloth. The cloudy post-storm sky should be assembled from broad overlapping fabric panels, while fine embroidered lines describe rain, electrical wires, and windblown grass.
Front-facing, balanced square composition with the crew occupying the central two-thirds and enough environmental context to establish rural utility work. Soft overcast lighting translated into fabric value changes; tactile shadows cast by raised seams and appliqué layers. Authentic handmade imperfections, but polished enough for a museum exhibition graphic. No frame, wall, room, mockup, logos, captions, borders, watermarks, or added typography; the textile artwork itself fills the entire image." \
width=1024 \
height=1024 \
providerSettings.openai.quality=high{
"taskType": "imageInference",
"taskUUID": "b4dcb0b5-f12d-4f39-aab7-b1fe33e41c07",
"model": "openai:4@1",
"positivePrompt": "Create a finished square commemorative artwork that looks like a 1970s documentary photograph transformed into a handmade American story quilt. Depict five rural electrical lineworkers—three women and two men—standing beside a weathered bucket truck after repairing storm damage. Preserve the convincing composition and candid specificity of an archival crew photo: full figures arranged in a loose row, one worker resting a gloved hand on a coiled cable, another holding a hard hat at her hip, utility poles and repaired power lines receding across flat farmland behind them. Their expressions are tired, proud, and understated rather than heroic poses.\n\nRender every element as layered fabric appliqué, dense hand embroidery, visible running stitches, quilted seams, frayed denim edges, corduroy, canvas, wool felt, and tiny thread highlights. Faces must remain recognizable and anatomically coherent despite the textile treatment. Construct the bucket truck, insulators, tool belts, work boots, gloves, cable, and pole hardware with accurate, readable shapes. Use a restrained heritage palette of faded indigo, workwear tan, rust orange, mustard yellow, brick red, warm cream, and charcoal, with subtle variations from aged cloth. The cloudy post-storm sky should be assembled from broad overlapping fabric panels, while fine embroidered lines describe rain, electrical wires, and windblown grass.\n\nFront-facing, balanced square composition with the crew occupying the central two-thirds and enough environmental context to establish rural utility work. Soft overcast lighting translated into fabric value changes; tactile shadows cast by raised seams and appliqué layers. Authentic handmade imperfections, but polished enough for a museum exhibition graphic. No frame, wall, room, mockup, logos, captions, borders, watermarks, or added typography; the textile artwork itself fills the entire image.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high"
}
}
}{
"taskType": "imageInference",
"taskUUID": "b4dcb0b5-f12d-4f39-aab7-b1fe33e41c07",
"imageUUID": "feb39005-a386-4e13-b8b2-a8073ae88d8a",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/feb39005-a386-4e13-b8b2-a8073ae88d8a.jpg",
"cost": 0.134945
}Ferry Crew Archive Restoration

Create a faithful, museum-quality restoration and colorization of reference image 1. Reference image 1 is the authoritative source for the entire composition, people, facial identities, poses, clothing shapes, tools, ferry structure, scaffolding, camera angle, crop, depth of field, and documentary character. Repair its diagonal tear, creases, scratches, dust, water stains, fading, and missing emulsion; reconstruct only the small details logically interrupted by that physical damage. Preserve every visible person and object in the same location and do not beautify, modernize, replace, remove, or add anyone. Use reference image 2 only as the historical color and material guide: apply its restrained late-1970s palette of deep navy coveralls, mustard-yellow hard hats, pale seafoam-green and cream ferry paint, safety-orange railings, blue-gray steel, red welding leads, wet charcoal concrete, and muted evergreen background tones to the corresponding elements in reference image 1. Match the overcast Pacific Northwest light and believable surface qualities shown in reference image 2, including worn paint, oxidized steel, cotton workwear, and damp pavement. Do not copy the second image's composition or introduce objects from it. The finished image should look like the original 1978 photograph had survived in excellent condition and had been captured on authentic color negative film: natural skin tones across the crew, subtle tonal separation, controlled saturation, fine period-appropriate grain, gentle highlight roll-off, and modest edge softness. Retain small signs of age such as very fine grain and slight optical softness while removing distracting physical damage. Avoid contemporary digital sharpness, HDR contrast, glossy AI smoothing, invented lettering, altered faces, duplicated people, anachronistic safety gear, or cinematic relighting. Deliver one clean full-frame landscape archival photograph with no frame, mat, caption, watermark, comparison layout, or before-and-after split.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:4@1',
positivePrompt: 'Create a faithful, museum-quality restoration and colorization of reference image 1. Reference image 1 is the authoritative source for the entire composition, people, facial identities, poses, clothing shapes, tools, ferry structure, scaffolding, camera angle, crop, depth of field, and documentary character. Repair its diagonal tear, creases, scratches, dust, water stains, fading, and missing emulsion; reconstruct only the small details logically interrupted by that physical damage. Preserve every visible person and object in the same location and do not beautify, modernize, replace, remove, or add anyone.\n\nUse reference image 2 only as the historical color and material guide: apply its restrained late-1970s palette of deep navy coveralls, mustard-yellow hard hats, pale seafoam-green and cream ferry paint, safety-orange railings, blue-gray steel, red welding leads, wet charcoal concrete, and muted evergreen background tones to the corresponding elements in reference image 1. Match the overcast Pacific Northwest light and believable surface qualities shown in reference image 2, including worn paint, oxidized steel, cotton workwear, and damp pavement. Do not copy the second image\'s composition or introduce objects from it.\n\nThe finished image should look like the original 1978 photograph had survived in excellent condition and had been captured on authentic color negative film: natural skin tones across the crew, subtle tonal separation, controlled saturation, fine period-appropriate grain, gentle highlight roll-off, and modest edge softness. Retain small signs of age such as very fine grain and slight optical softness while removing distracting physical damage. Avoid contemporary digital sharpness, HDR contrast, glossy AI smoothing, invented lettering, altered faces, duplicated people, anachronistic safety gear, or cinematic relighting. Deliver one clean full-frame landscape archival photograph with no frame, mat, caption, watermark, comparison layout, or before-and-after split.',
width: 1536,
height: 1024,
providerSettings: {
openai: {
quality: 'medium'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/af5b02ef-9913-47d4-8b97-ba8557d86db4.jpg',
'https://assets.runware.ai/assets/inputs/e1a04f30-d57c-4067-a8bf-e154b7835e2c.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": "openai:4@1",
"positivePrompt": "Create a faithful, museum-quality restoration and colorization of reference image 1. Reference image 1 is the authoritative source for the entire composition, people, facial identities, poses, clothing shapes, tools, ferry structure, scaffolding, camera angle, crop, depth of field, and documentary character. Repair its diagonal tear, creases, scratches, dust, water stains, fading, and missing emulsion; reconstruct only the small details logically interrupted by that physical damage. Preserve every visible person and object in the same location and do not beautify, modernize, replace, remove, or add anyone.\n\nUse reference image 2 only as the historical color and material guide: apply its restrained late-1970s palette of deep navy coveralls, mustard-yellow hard hats, pale seafoam-green and cream ferry paint, safety-orange railings, blue-gray steel, red welding leads, wet charcoal concrete, and muted evergreen background tones to the corresponding elements in reference image 1. Match the overcast Pacific Northwest light and believable surface qualities shown in reference image 2, including worn paint, oxidized steel, cotton workwear, and damp pavement. Do not copy the second image's composition or introduce objects from it.\n\nThe finished image should look like the original 1978 photograph had survived in excellent condition and had been captured on authentic color negative film: natural skin tones across the crew, subtle tonal separation, controlled saturation, fine period-appropriate grain, gentle highlight roll-off, and modest edge softness. Retain small signs of age such as very fine grain and slight optical softness while removing distracting physical damage. Avoid contemporary digital sharpness, HDR contrast, glossy AI smoothing, invented lettering, altered faces, duplicated people, anachronistic safety gear, or cinematic relighting. Deliver one clean full-frame landscape archival photograph with no frame, mat, caption, watermark, comparison layout, or before-and-after split.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "medium"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/af5b02ef-9913-47d4-8b97-ba8557d86db4.jpg",
"https://assets.runware.ai/assets/inputs/e1a04f30-d57c-4067-a8bf-e154b7835e2c.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": "40431a09-c7d2-4cca-8d34-a0297f604ef0",
"model": "openai:4@1",
"positivePrompt": "Create a faithful, museum-quality restoration and colorization of reference image 1. Reference image 1 is the authoritative source for the entire composition, people, facial identities, poses, clothing shapes, tools, ferry structure, scaffolding, camera angle, crop, depth of field, and documentary character. Repair its diagonal tear, creases, scratches, dust, water stains, fading, and missing emulsion; reconstruct only the small details logically interrupted by that physical damage. Preserve every visible person and object in the same location and do not beautify, modernize, replace, remove, or add anyone.\n\nUse reference image 2 only as the historical color and material guide: apply its restrained late-1970s palette of deep navy coveralls, mustard-yellow hard hats, pale seafoam-green and cream ferry paint, safety-orange railings, blue-gray steel, red welding leads, wet charcoal concrete, and muted evergreen background tones to the corresponding elements in reference image 1. Match the overcast Pacific Northwest light and believable surface qualities shown in reference image 2, including worn paint, oxidized steel, cotton workwear, and damp pavement. Do not copy the second image's composition or introduce objects from it.\n\nThe finished image should look like the original 1978 photograph had survived in excellent condition and had been captured on authentic color negative film: natural skin tones across the crew, subtle tonal separation, controlled saturation, fine period-appropriate grain, gentle highlight roll-off, and modest edge softness. Retain small signs of age such as very fine grain and slight optical softness while removing distracting physical damage. Avoid contemporary digital sharpness, HDR contrast, glossy AI smoothing, invented lettering, altered faces, duplicated people, anachronistic safety gear, or cinematic relighting. Deliver one clean full-frame landscape archival photograph with no frame, mat, caption, watermark, comparison layout, or before-and-after split.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "medium"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/af5b02ef-9913-47d4-8b97-ba8557d86db4.jpg",
"https://assets.runware.ai/assets/inputs/e1a04f30-d57c-4067-a8bf-e154b7835e2c.jpg"
]
}
}
]'runware run openai:4@1 \
positivePrompt="Create a faithful, museum-quality restoration and colorization of reference image 1. Reference image 1 is the authoritative source for the entire composition, people, facial identities, poses, clothing shapes, tools, ferry structure, scaffolding, camera angle, crop, depth of field, and documentary character. Repair its diagonal tear, creases, scratches, dust, water stains, fading, and missing emulsion; reconstruct only the small details logically interrupted by that physical damage. Preserve every visible person and object in the same location and do not beautify, modernize, replace, remove, or add anyone.
Use reference image 2 only as the historical color and material guide: apply its restrained late-1970s palette of deep navy coveralls, mustard-yellow hard hats, pale seafoam-green and cream ferry paint, safety-orange railings, blue-gray steel, red welding leads, wet charcoal concrete, and muted evergreen background tones to the corresponding elements in reference image 1. Match the overcast Pacific Northwest light and believable surface qualities shown in reference image 2, including worn paint, oxidized steel, cotton workwear, and damp pavement. Do not copy the second image's composition or introduce objects from it.
The finished image should look like the original 1978 photograph had survived in excellent condition and had been captured on authentic color negative film: natural skin tones across the crew, subtle tonal separation, controlled saturation, fine period-appropriate grain, gentle highlight roll-off, and modest edge softness. Retain small signs of age such as very fine grain and slight optical softness while removing distracting physical damage. Avoid contemporary digital sharpness, HDR contrast, glossy AI smoothing, invented lettering, altered faces, duplicated people, anachronistic safety gear, or cinematic relighting. Deliver one clean full-frame landscape archival photograph with no frame, mat, caption, watermark, comparison layout, or before-and-after split." \
width=1536 \
height=1024 \
providerSettings.openai.quality=medium \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/af5b02ef-9913-47d4-8b97-ba8557d86db4.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/e1a04f30-d57c-4067-a8bf-e154b7835e2c.jpg{
"taskType": "imageInference",
"taskUUID": "40431a09-c7d2-4cca-8d34-a0297f604ef0",
"model": "openai:4@1",
"positivePrompt": "Create a faithful, museum-quality restoration and colorization of reference image 1. Reference image 1 is the authoritative source for the entire composition, people, facial identities, poses, clothing shapes, tools, ferry structure, scaffolding, camera angle, crop, depth of field, and documentary character. Repair its diagonal tear, creases, scratches, dust, water stains, fading, and missing emulsion; reconstruct only the small details logically interrupted by that physical damage. Preserve every visible person and object in the same location and do not beautify, modernize, replace, remove, or add anyone.\n\nUse reference image 2 only as the historical color and material guide: apply its restrained late-1970s palette of deep navy coveralls, mustard-yellow hard hats, pale seafoam-green and cream ferry paint, safety-orange railings, blue-gray steel, red welding leads, wet charcoal concrete, and muted evergreen background tones to the corresponding elements in reference image 1. Match the overcast Pacific Northwest light and believable surface qualities shown in reference image 2, including worn paint, oxidized steel, cotton workwear, and damp pavement. Do not copy the second image's composition or introduce objects from it.\n\nThe finished image should look like the original 1978 photograph had survived in excellent condition and had been captured on authentic color negative film: natural skin tones across the crew, subtle tonal separation, controlled saturation, fine period-appropriate grain, gentle highlight roll-off, and modest edge softness. Retain small signs of age such as very fine grain and slight optical softness while removing distracting physical damage. Avoid contemporary digital sharpness, HDR contrast, glossy AI smoothing, invented lettering, altered faces, duplicated people, anachronistic safety gear, or cinematic relighting. Deliver one clean full-frame landscape archival photograph with no frame, mat, caption, watermark, comparison layout, or before-and-after split.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "medium"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/af5b02ef-9913-47d4-8b97-ba8557d86db4.jpg",
"https://assets.runware.ai/assets/inputs/e1a04f30-d57c-4067-a8bf-e154b7835e2c.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "40431a09-c7d2-4cca-8d34-a0297f604ef0",
"imageUUID": "28f043c3-4fd8-400c-b015-dd6cb4f24a67",
"imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/28f043c3-4fd8-400c-b015-dd6cb4f24a67.jpg",
"cost": 0.057549
}Wildlife Hospital Cut-Paper Artwork

Edit the supplied photograph into finished annual report cover artwork for a wildlife rehabilitation hospital. Replace the entire barn owl with a convincing handcrafted, dimensional cut-paper interpretation of the same owl. Preserve its exact species, upright pose, proportions, folded-wing silhouette, head angle, placement, scale, feet position, and alert forward gaze. Construct the owl from many precisely cut and subtly raised paper layers: a cream heart-shaped facial disc, charcoal and warm-brown feather markings, rust-red wing accents, muted mustard highlights, and restrained deep-teal details. Use elegant simplified feather shapes inspired by mid-century natural-history illustration, with visible paper fibers, crisp cut edges, tiny registration variations, and delicate shadows between overlapping layers. Keep the eyes expressive and anatomically aligned, rendered as layered black and amber paper rather than photographic eyes. The result should feel like an expertly photographed physical paper sculpture occupying the owl's original position, not a flat digital filter. Preserve the wooden perch, seamless warm-beige background, original lighting direction, negative space, camera angle, depth of field, and all surrounding scene details unchanged. Maintain believable contact where the paper feet wrap around the perch and add only the subtle shadows needed to integrate the transformed owl naturally into the existing photograph. Sophisticated editorial craft aesthetic, calm and compassionate mood, clean portrait composition, no typography, no logo, no border, no additional objects.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:4@1',
positivePrompt: 'Edit the supplied photograph into finished annual report cover artwork for a wildlife rehabilitation hospital. Replace the entire barn owl with a convincing handcrafted, dimensional cut-paper interpretation of the same owl. Preserve its exact species, upright pose, proportions, folded-wing silhouette, head angle, placement, scale, feet position, and alert forward gaze. Construct the owl from many precisely cut and subtly raised paper layers: a cream heart-shaped facial disc, charcoal and warm-brown feather markings, rust-red wing accents, muted mustard highlights, and restrained deep-teal details. Use elegant simplified feather shapes inspired by mid-century natural-history illustration, with visible paper fibers, crisp cut edges, tiny registration variations, and delicate shadows between overlapping layers. Keep the eyes expressive and anatomically aligned, rendered as layered black and amber paper rather than photographic eyes. The result should feel like an expertly photographed physical paper sculpture occupying the owl\'s original position, not a flat digital filter. Preserve the wooden perch, seamless warm-beige background, original lighting direction, negative space, camera angle, depth of field, and all surrounding scene details unchanged. Maintain believable contact where the paper feet wrap around the perch and add only the subtle shadows needed to integrate the transformed owl naturally into the existing photograph. Sophisticated editorial craft aesthetic, calm and compassionate mood, clean portrait composition, no typography, no logo, no border, no additional objects.',
width: 1024,
height: 1536,
providerSettings: {
openai: {
quality: 'high'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/5ce06ee5-fac1-42eb-91fa-ab03b185aceb.jpg'
],
maskImage: 'https://assets.runware.ai/assets/inputs/1403b241-4046-4f70-9e98-f2bb0a7a2864.png'
}
})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": "openai:4@1",
"positivePrompt": "Edit the supplied photograph into finished annual report cover artwork for a wildlife rehabilitation hospital. Replace the entire barn owl with a convincing handcrafted, dimensional cut-paper interpretation of the same owl. Preserve its exact species, upright pose, proportions, folded-wing silhouette, head angle, placement, scale, feet position, and alert forward gaze. Construct the owl from many precisely cut and subtly raised paper layers: a cream heart-shaped facial disc, charcoal and warm-brown feather markings, rust-red wing accents, muted mustard highlights, and restrained deep-teal details. Use elegant simplified feather shapes inspired by mid-century natural-history illustration, with visible paper fibers, crisp cut edges, tiny registration variations, and delicate shadows between overlapping layers. Keep the eyes expressive and anatomically aligned, rendered as layered black and amber paper rather than photographic eyes. The result should feel like an expertly photographed physical paper sculpture occupying the owl's original position, not a flat digital filter. Preserve the wooden perch, seamless warm-beige background, original lighting direction, negative space, camera angle, depth of field, and all surrounding scene details unchanged. Maintain believable contact where the paper feet wrap around the perch and add only the subtle shadows needed to integrate the transformed owl naturally into the existing photograph. Sophisticated editorial craft aesthetic, calm and compassionate mood, clean portrait composition, no typography, no logo, no border, no additional objects.",
"width": 1024,
"height": 1536,
"providerSettings": {
"openai": {
"quality": "high"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/5ce06ee5-fac1-42eb-91fa-ab03b185aceb.jpg"
],
"maskImage": "https://assets.runware.ai/assets/inputs/1403b241-4046-4f70-9e98-f2bb0a7a2864.png"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "90b60ca8-7d91-4526-95c8-3cb20e6ab4b4",
"model": "openai:4@1",
"positivePrompt": "Edit the supplied photograph into finished annual report cover artwork for a wildlife rehabilitation hospital. Replace the entire barn owl with a convincing handcrafted, dimensional cut-paper interpretation of the same owl. Preserve its exact species, upright pose, proportions, folded-wing silhouette, head angle, placement, scale, feet position, and alert forward gaze. Construct the owl from many precisely cut and subtly raised paper layers: a cream heart-shaped facial disc, charcoal and warm-brown feather markings, rust-red wing accents, muted mustard highlights, and restrained deep-teal details. Use elegant simplified feather shapes inspired by mid-century natural-history illustration, with visible paper fibers, crisp cut edges, tiny registration variations, and delicate shadows between overlapping layers. Keep the eyes expressive and anatomically aligned, rendered as layered black and amber paper rather than photographic eyes. The result should feel like an expertly photographed physical paper sculpture occupying the owl's original position, not a flat digital filter. Preserve the wooden perch, seamless warm-beige background, original lighting direction, negative space, camera angle, depth of field, and all surrounding scene details unchanged. Maintain believable contact where the paper feet wrap around the perch and add only the subtle shadows needed to integrate the transformed owl naturally into the existing photograph. Sophisticated editorial craft aesthetic, calm and compassionate mood, clean portrait composition, no typography, no logo, no border, no additional objects.",
"width": 1024,
"height": 1536,
"providerSettings": {
"openai": {
"quality": "high"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/5ce06ee5-fac1-42eb-91fa-ab03b185aceb.jpg"
],
"maskImage": "https://assets.runware.ai/assets/inputs/1403b241-4046-4f70-9e98-f2bb0a7a2864.png"
}
}
]'runware run openai:4@1 \
positivePrompt="Edit the supplied photograph into finished annual report cover artwork for a wildlife rehabilitation hospital. Replace the entire barn owl with a convincing handcrafted, dimensional cut-paper interpretation of the same owl. Preserve its exact species, upright pose, proportions, folded-wing silhouette, head angle, placement, scale, feet position, and alert forward gaze. Construct the owl from many precisely cut and subtly raised paper layers: a cream heart-shaped facial disc, charcoal and warm-brown feather markings, rust-red wing accents, muted mustard highlights, and restrained deep-teal details. Use elegant simplified feather shapes inspired by mid-century natural-history illustration, with visible paper fibers, crisp cut edges, tiny registration variations, and delicate shadows between overlapping layers. Keep the eyes expressive and anatomically aligned, rendered as layered black and amber paper rather than photographic eyes. The result should feel like an expertly photographed physical paper sculpture occupying the owl's original position, not a flat digital filter. Preserve the wooden perch, seamless warm-beige background, original lighting direction, negative space, camera angle, depth of field, and all surrounding scene details unchanged. Maintain believable contact where the paper feet wrap around the perch and add only the subtle shadows needed to integrate the transformed owl naturally into the existing photograph. Sophisticated editorial craft aesthetic, calm and compassionate mood, clean portrait composition, no typography, no logo, no border, no additional objects." \
width=1024 \
height=1536 \
providerSettings.openai.quality=high \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/5ce06ee5-fac1-42eb-91fa-ab03b185aceb.jpg \
inputs.maskImage=https://assets.runware.ai/assets/inputs/1403b241-4046-4f70-9e98-f2bb0a7a2864.png{
"taskType": "imageInference",
"taskUUID": "90b60ca8-7d91-4526-95c8-3cb20e6ab4b4",
"model": "openai:4@1",
"positivePrompt": "Edit the supplied photograph into finished annual report cover artwork for a wildlife rehabilitation hospital. Replace the entire barn owl with a convincing handcrafted, dimensional cut-paper interpretation of the same owl. Preserve its exact species, upright pose, proportions, folded-wing silhouette, head angle, placement, scale, feet position, and alert forward gaze. Construct the owl from many precisely cut and subtly raised paper layers: a cream heart-shaped facial disc, charcoal and warm-brown feather markings, rust-red wing accents, muted mustard highlights, and restrained deep-teal details. Use elegant simplified feather shapes inspired by mid-century natural-history illustration, with visible paper fibers, crisp cut edges, tiny registration variations, and delicate shadows between overlapping layers. Keep the eyes expressive and anatomically aligned, rendered as layered black and amber paper rather than photographic eyes. The result should feel like an expertly photographed physical paper sculpture occupying the owl's original position, not a flat digital filter. Preserve the wooden perch, seamless warm-beige background, original lighting direction, negative space, camera angle, depth of field, and all surrounding scene details unchanged. Maintain believable contact where the paper feet wrap around the perch and add only the subtle shadows needed to integrate the transformed owl naturally into the existing photograph. Sophisticated editorial craft aesthetic, calm and compassionate mood, clean portrait composition, no typography, no logo, no border, no additional objects.",
"width": 1024,
"height": 1536,
"providerSettings": {
"openai": {
"quality": "high"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/5ce06ee5-fac1-42eb-91fa-ab03b185aceb.jpg"
],
"maskImage": "https://assets.runware.ai/assets/inputs/1403b241-4046-4f70-9e98-f2bb0a7a2864.png"
}
}{
"taskType": "imageInference",
"taskUUID": "90b60ca8-7d91-4526-95c8-3cb20e6ab4b4",
"imageUUID": "3ae458cc-c4ce-426a-8396-8d196340e06e",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/3ae458cc-c4ce-426a-8396-8d196340e06e.jpg",
"cost": 0.203799
}Retro-Futurist Observatory Sticker Sheet

A premium sticker-sheet style illustration on a transparent background: a retro-futurist moon observatory collection composed of isolated cutout elements arranged neatly in one square frame, including a brass telescope dome with glowing teal windows, a tiny rover carrying crystal samples, a crescent moon map panel, a star chart clipboard, a thermos with constellation decals, cables, bolts, patches, and small scientific instruments. Clean separation between objects, crisp edges, no backdrop, no floor, no scene environment, each object fully visible and floating independently. Rich mid-century sci-fi design, enamel pin and screenprint aesthetic, saturated coral, teal, cream, and gold palette, intricate linework, subtle shading, polished graphic design, exceptional clarity, tiny legible labels and emblem-style markings.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:4@1',
positivePrompt: 'A premium sticker-sheet style illustration on a transparent background: a retro-futurist moon observatory collection composed of isolated cutout elements arranged neatly in one square frame, including a brass telescope dome with glowing teal windows, a tiny rover carrying crystal samples, a crescent moon map panel, a star chart clipboard, a thermos with constellation decals, cables, bolts, patches, and small scientific instruments. Clean separation between objects, crisp edges, no backdrop, no floor, no scene environment, each object fully visible and floating independently. Rich mid-century sci-fi design, enamel pin and screenprint aesthetic, saturated coral, teal, cream, and gold palette, intricate linework, subtle shading, polished graphic design, exceptional clarity, tiny legible labels and emblem-style markings.',
width: 1024,
height: 1024,
providerSettings: {
openai: {
background: 'transparent',
quality: 'high'
}
}
})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": "openai:4@1",
"positivePrompt": "A premium sticker-sheet style illustration on a transparent background: a retro-futurist moon observatory collection composed of isolated cutout elements arranged neatly in one square frame, including a brass telescope dome with glowing teal windows, a tiny rover carrying crystal samples, a crescent moon map panel, a star chart clipboard, a thermos with constellation decals, cables, bolts, patches, and small scientific instruments. Clean separation between objects, crisp edges, no backdrop, no floor, no scene environment, each object fully visible and floating independently. Rich mid-century sci-fi design, enamel pin and screenprint aesthetic, saturated coral, teal, cream, and gold palette, intricate linework, subtle shading, polished graphic design, exceptional clarity, tiny legible labels and emblem-style markings.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"background": "transparent",
"quality": "high"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "68b17b80-5386-418f-933a-4884f5ce6b51",
"model": "openai:4@1",
"positivePrompt": "A premium sticker-sheet style illustration on a transparent background: a retro-futurist moon observatory collection composed of isolated cutout elements arranged neatly in one square frame, including a brass telescope dome with glowing teal windows, a tiny rover carrying crystal samples, a crescent moon map panel, a star chart clipboard, a thermos with constellation decals, cables, bolts, patches, and small scientific instruments. Clean separation between objects, crisp edges, no backdrop, no floor, no scene environment, each object fully visible and floating independently. Rich mid-century sci-fi design, enamel pin and screenprint aesthetic, saturated coral, teal, cream, and gold palette, intricate linework, subtle shading, polished graphic design, exceptional clarity, tiny legible labels and emblem-style markings.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"background": "transparent",
"quality": "high"
}
}
}
]'runware run openai:4@1 \
positivePrompt="A premium sticker-sheet style illustration on a transparent background: a retro-futurist moon observatory collection composed of isolated cutout elements arranged neatly in one square frame, including a brass telescope dome with glowing teal windows, a tiny rover carrying crystal samples, a crescent moon map panel, a star chart clipboard, a thermos with constellation decals, cables, bolts, patches, and small scientific instruments. Clean separation between objects, crisp edges, no backdrop, no floor, no scene environment, each object fully visible and floating independently. Rich mid-century sci-fi design, enamel pin and screenprint aesthetic, saturated coral, teal, cream, and gold palette, intricate linework, subtle shading, polished graphic design, exceptional clarity, tiny legible labels and emblem-style markings." \
width=1024 \
height=1024 \
providerSettings.openai.background=transparent \
providerSettings.openai.quality=high{
"taskType": "imageInference",
"taskUUID": "68b17b80-5386-418f-933a-4884f5ce6b51",
"model": "openai:4@1",
"positivePrompt": "A premium sticker-sheet style illustration on a transparent background: a retro-futurist moon observatory collection composed of isolated cutout elements arranged neatly in one square frame, including a brass telescope dome with glowing teal windows, a tiny rover carrying crystal samples, a crescent moon map panel, a star chart clipboard, a thermos with constellation decals, cables, bolts, patches, and small scientific instruments. Clean separation between objects, crisp edges, no backdrop, no floor, no scene environment, each object fully visible and floating independently. Rich mid-century sci-fi design, enamel pin and screenprint aesthetic, saturated coral, teal, cream, and gold palette, intricate linework, subtle shading, polished graphic design, exceptional clarity, tiny legible labels and emblem-style markings.",
"width": 1024,
"height": 1024,
"providerSettings": {
"openai": {
"background": "transparent",
"quality": "high"
}
}
}{
"taskType": "imageInference",
"taskUUID": "68b17b80-5386-418f-933a-4884f5ce6b51",
"imageUUID": "2a2178c0-c736-4c73-8700-9b2b06ae0857",
"imageURL": "https://im.runware.ai/image/os/a16d07/ws/2/ii/2a2178c0-c736-4c73-8700-9b2b06ae0857.jpg",
"cost": 0.13392
}Retro-Futurist Metro Poster

A meticulously designed retro-futurist subway advertisement poster mounted inside a pristine glass transit shelter at blue hour, centered composition, bold graphic design, premium print finish, art deco meets optimistic 1970s sci-fi. Main subject: a sleek silver magnetic train gliding into a luminous underground station with amber and teal accent lighting, tiny commuters in fashionable coats, polished terrazzo floors reflecting signage. Include abundant crisp, readable poster typography integrated into the artwork: large headline 'ORBITAL LINE CITY PASS', subheading 'Unlimited rides across 12 districts', pricing badge '$24 WEEKLY', feature list 'Night Metro / River Tram / Skybridge Express', footer text 'Valid from 01 Oct 2086', 'Tap once, go everywhere', and a small route map legend with station names in neat micro text. Add a corner seal reading 'Metropolitan Transit Bureau'. Make all text clean, correctly spelled, and convincingly printed. Rich paper texture, subtle ink grain, precise linework, elegant geometry, cinematic urban background beyond the shelter with light rain on pavement, moody but hopeful atmosphere, highly detailed, sharp focus, premium editorial poster aesthetic.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:4@1',
positivePrompt: 'A meticulously designed retro-futurist subway advertisement poster mounted inside a pristine glass transit shelter at blue hour, centered composition, bold graphic design, premium print finish, art deco meets optimistic 1970s sci-fi. Main subject: a sleek silver magnetic train gliding into a luminous underground station with amber and teal accent lighting, tiny commuters in fashionable coats, polished terrazzo floors reflecting signage. Include abundant crisp, readable poster typography integrated into the artwork: large headline \'ORBITAL LINE CITY PASS\', subheading \'Unlimited rides across 12 districts\', pricing badge \'$24 WEEKLY\', feature list \'Night Metro / River Tram / Skybridge Express\', footer text \'Valid from 01 Oct 2086\', \'Tap once, go everywhere\', and a small route map legend with station names in neat micro text. Add a corner seal reading \'Metropolitan Transit Bureau\'. Make all text clean, correctly spelled, and convincingly printed. Rich paper texture, subtle ink grain, precise linework, elegant geometry, cinematic urban background beyond the shelter with light rain on pavement, moody but hopeful atmosphere, highly detailed, sharp focus, premium editorial poster aesthetic.',
width: 1536,
height: 1024,
providerSettings: {
openai: {
background: 'opaque',
quality: 'high'
}
}
})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": "openai:4@1",
"positivePrompt": "A meticulously designed retro-futurist subway advertisement poster mounted inside a pristine glass transit shelter at blue hour, centered composition, bold graphic design, premium print finish, art deco meets optimistic 1970s sci-fi. Main subject: a sleek silver magnetic train gliding into a luminous underground station with amber and teal accent lighting, tiny commuters in fashionable coats, polished terrazzo floors reflecting signage. Include abundant crisp, readable poster typography integrated into the artwork: large headline 'ORBITAL LINE CITY PASS', subheading 'Unlimited rides across 12 districts', pricing badge '$24 WEEKLY', feature list 'Night Metro / River Tram / Skybridge Express', footer text 'Valid from 01 Oct 2086', 'Tap once, go everywhere', and a small route map legend with station names in neat micro text. Add a corner seal reading 'Metropolitan Transit Bureau'. Make all text clean, correctly spelled, and convincingly printed. Rich paper texture, subtle ink grain, precise linework, elegant geometry, cinematic urban background beyond the shelter with light rain on pavement, moody but hopeful atmosphere, highly detailed, sharp focus, premium editorial poster aesthetic.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "2a99f619-403d-4dd6-97ee-465d80c131d2",
"model": "openai:4@1",
"positivePrompt": "A meticulously designed retro-futurist subway advertisement poster mounted inside a pristine glass transit shelter at blue hour, centered composition, bold graphic design, premium print finish, art deco meets optimistic 1970s sci-fi. Main subject: a sleek silver magnetic train gliding into a luminous underground station with amber and teal accent lighting, tiny commuters in fashionable coats, polished terrazzo floors reflecting signage. Include abundant crisp, readable poster typography integrated into the artwork: large headline 'ORBITAL LINE CITY PASS', subheading 'Unlimited rides across 12 districts', pricing badge '$24 WEEKLY', feature list 'Night Metro / River Tram / Skybridge Express', footer text 'Valid from 01 Oct 2086', 'Tap once, go everywhere', and a small route map legend with station names in neat micro text. Add a corner seal reading 'Metropolitan Transit Bureau'. Make all text clean, correctly spelled, and convincingly printed. Rich paper texture, subtle ink grain, precise linework, elegant geometry, cinematic urban background beyond the shelter with light rain on pavement, moody but hopeful atmosphere, highly detailed, sharp focus, premium editorial poster aesthetic.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
}
}
]'runware run openai:4@1 \
positivePrompt="A meticulously designed retro-futurist subway advertisement poster mounted inside a pristine glass transit shelter at blue hour, centered composition, bold graphic design, premium print finish, art deco meets optimistic 1970s sci-fi. Main subject: a sleek silver magnetic train gliding into a luminous underground station with amber and teal accent lighting, tiny commuters in fashionable coats, polished terrazzo floors reflecting signage. Include abundant crisp, readable poster typography integrated into the artwork: large headline 'ORBITAL LINE CITY PASS', subheading 'Unlimited rides across 12 districts', pricing badge '\$24 WEEKLY', feature list 'Night Metro / River Tram / Skybridge Express', footer text 'Valid from 01 Oct 2086', 'Tap once, go everywhere', and a small route map legend with station names in neat micro text. Add a corner seal reading 'Metropolitan Transit Bureau'. Make all text clean, correctly spelled, and convincingly printed. Rich paper texture, subtle ink grain, precise linework, elegant geometry, cinematic urban background beyond the shelter with light rain on pavement, moody but hopeful atmosphere, highly detailed, sharp focus, premium editorial poster aesthetic." \
width=1536 \
height=1024 \
providerSettings.openai.background=opaque \
providerSettings.openai.quality=high{
"taskType": "imageInference",
"taskUUID": "2a99f619-403d-4dd6-97ee-465d80c131d2",
"model": "openai:4@1",
"positivePrompt": "A meticulously designed retro-futurist subway advertisement poster mounted inside a pristine glass transit shelter at blue hour, centered composition, bold graphic design, premium print finish, art deco meets optimistic 1970s sci-fi. Main subject: a sleek silver magnetic train gliding into a luminous underground station with amber and teal accent lighting, tiny commuters in fashionable coats, polished terrazzo floors reflecting signage. Include abundant crisp, readable poster typography integrated into the artwork: large headline 'ORBITAL LINE CITY PASS', subheading 'Unlimited rides across 12 districts', pricing badge '$24 WEEKLY', feature list 'Night Metro / River Tram / Skybridge Express', footer text 'Valid from 01 Oct 2086', 'Tap once, go everywhere', and a small route map legend with station names in neat micro text. Add a corner seal reading 'Metropolitan Transit Bureau'. Make all text clean, correctly spelled, and convincingly printed. Rich paper texture, subtle ink grain, precise linework, elegant geometry, cinematic urban background beyond the shelter with light rain on pavement, moody but hopeful atmosphere, highly detailed, sharp focus, premium editorial poster aesthetic.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
}
}{
"taskType": "imageInference",
"taskUUID": "2a99f619-403d-4dd6-97ee-465d80c131d2",
"imageUUID": "aa5e4585-3c3c-4103-9381-05c30be0f222",
"imageURL": "https://im.runware.ai/image/os/a15d18/ws/3/ii/aa5e4585-3c3c-4103-9381-05c30be0f222.jpg",
"cost": 0.19984
}Luminescent Botanical Observatory Interior

A grand interior of a moonlit botanical observatory built inside a glass-domed conservatory on a cliff above a bioluminescent sea, art nouveau meets retro-futurist science design. In the center stands a circular brass orrery entwined with glowing vines and rare night-blooming flowers. Curators in elegant field coats examine luminous specimens under suspended lanterns. Shelves of labeled apothecary jars, botanical sketches pinned to cork boards, polished stone floors reflecting blue-green light, delicate fog near the ground, distant storm clouds beyond the glass dome. Include crisp, believable small text on a few signs and labels such as 'Specimen Archive', 'Lunar Orchid Wing', and 'Humidity 78%'. Cinematic wide composition, exquisite material detail, believable perspective, soft atmospheric depth, rich teal, amber, and violet palette, serene wonder, highly detailed, premium editorial concept art realism.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:4@1',
positivePrompt: 'A grand interior of a moonlit botanical observatory built inside a glass-domed conservatory on a cliff above a bioluminescent sea, art nouveau meets retro-futurist science design. In the center stands a circular brass orrery entwined with glowing vines and rare night-blooming flowers. Curators in elegant field coats examine luminous specimens under suspended lanterns. Shelves of labeled apothecary jars, botanical sketches pinned to cork boards, polished stone floors reflecting blue-green light, delicate fog near the ground, distant storm clouds beyond the glass dome. Include crisp, believable small text on a few signs and labels such as \'Specimen Archive\', \'Lunar Orchid Wing\', and \'Humidity 78%\'. Cinematic wide composition, exquisite material detail, believable perspective, soft atmospheric depth, rich teal, amber, and violet palette, serene wonder, highly detailed, premium editorial concept art realism.',
width: 1536,
height: 1024,
providerSettings: {
openai: {
background: 'opaque',
quality: 'high'
}
}
})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": "openai:4@1",
"positivePrompt": "A grand interior of a moonlit botanical observatory built inside a glass-domed conservatory on a cliff above a bioluminescent sea, art nouveau meets retro-futurist science design. In the center stands a circular brass orrery entwined with glowing vines and rare night-blooming flowers. Curators in elegant field coats examine luminous specimens under suspended lanterns. Shelves of labeled apothecary jars, botanical sketches pinned to cork boards, polished stone floors reflecting blue-green light, delicate fog near the ground, distant storm clouds beyond the glass dome. Include crisp, believable small text on a few signs and labels such as 'Specimen Archive', 'Lunar Orchid Wing', and 'Humidity 78%'. Cinematic wide composition, exquisite material detail, believable perspective, soft atmospheric depth, rich teal, amber, and violet palette, serene wonder, highly detailed, premium editorial concept art realism.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "3d582d50-3e2b-47b2-bd02-839f962a7b38",
"model": "openai:4@1",
"positivePrompt": "A grand interior of a moonlit botanical observatory built inside a glass-domed conservatory on a cliff above a bioluminescent sea, art nouveau meets retro-futurist science design. In the center stands a circular brass orrery entwined with glowing vines and rare night-blooming flowers. Curators in elegant field coats examine luminous specimens under suspended lanterns. Shelves of labeled apothecary jars, botanical sketches pinned to cork boards, polished stone floors reflecting blue-green light, delicate fog near the ground, distant storm clouds beyond the glass dome. Include crisp, believable small text on a few signs and labels such as 'Specimen Archive', 'Lunar Orchid Wing', and 'Humidity 78%'. Cinematic wide composition, exquisite material detail, believable perspective, soft atmospheric depth, rich teal, amber, and violet palette, serene wonder, highly detailed, premium editorial concept art realism.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
}
}
]'runware run openai:4@1 \
positivePrompt="A grand interior of a moonlit botanical observatory built inside a glass-domed conservatory on a cliff above a bioluminescent sea, art nouveau meets retro-futurist science design. In the center stands a circular brass orrery entwined with glowing vines and rare night-blooming flowers. Curators in elegant field coats examine luminous specimens under suspended lanterns. Shelves of labeled apothecary jars, botanical sketches pinned to cork boards, polished stone floors reflecting blue-green light, delicate fog near the ground, distant storm clouds beyond the glass dome. Include crisp, believable small text on a few signs and labels such as 'Specimen Archive', 'Lunar Orchid Wing', and 'Humidity 78%'. Cinematic wide composition, exquisite material detail, believable perspective, soft atmospheric depth, rich teal, amber, and violet palette, serene wonder, highly detailed, premium editorial concept art realism." \
width=1536 \
height=1024 \
providerSettings.openai.background=opaque \
providerSettings.openai.quality=high{
"taskType": "imageInference",
"taskUUID": "3d582d50-3e2b-47b2-bd02-839f962a7b38",
"model": "openai:4@1",
"positivePrompt": "A grand interior of a moonlit botanical observatory built inside a glass-domed conservatory on a cliff above a bioluminescent sea, art nouveau meets retro-futurist science design. In the center stands a circular brass orrery entwined with glowing vines and rare night-blooming flowers. Curators in elegant field coats examine luminous specimens under suspended lanterns. Shelves of labeled apothecary jars, botanical sketches pinned to cork boards, polished stone floors reflecting blue-green light, delicate fog near the ground, distant storm clouds beyond the glass dome. Include crisp, believable small text on a few signs and labels such as 'Specimen Archive', 'Lunar Orchid Wing', and 'Humidity 78%'. Cinematic wide composition, exquisite material detail, believable perspective, soft atmospheric depth, rich teal, amber, and violet palette, serene wonder, highly detailed, premium editorial concept art realism.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
}
}{
"taskType": "imageInference",
"taskUUID": "3d582d50-3e2b-47b2-bd02-839f962a7b38",
"imageUUID": "bab1270c-0382-49dc-9644-4509a33c7da7",
"imageURL": "https://im.runware.ai/image/os/a13d12/ws/3/ii/bab1270c-0382-49dc-9644-4509a33c7da7.jpg",
"cost": 0.19961
}Bioluminescent Art Nouveau Portrait

Transform the reference portrait into a luxurious Art Nouveau poster portrait infused with deep-sea bioluminescent fantasy. Preserve the subject's facial identity, pose, gaze direction, and upper-body framing from the reference image. Replace the simple outfit with an elegant gown made of layered translucent fabrics, pearl details, and subtle shell-inspired ornamentation. Surround her with flowing organic linework, iridescent jellyfish-glass motifs, moonlit teal and violet glow, gilded border accents, and delicate typography-like decorative shapes that feel like a vintage exhibition print without relying on readable text. Rich painterly detail, believable skin, refined hands, symmetrical composition, premium editorial finish, dramatic yet graceful mood.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:4@1',
positivePrompt: 'Transform the reference portrait into a luxurious Art Nouveau poster portrait infused with deep-sea bioluminescent fantasy. Preserve the subject\'s facial identity, pose, gaze direction, and upper-body framing from the reference image. Replace the simple outfit with an elegant gown made of layered translucent fabrics, pearl details, and subtle shell-inspired ornamentation. Surround her with flowing organic linework, iridescent jellyfish-glass motifs, moonlit teal and violet glow, gilded border accents, and delicate typography-like decorative shapes that feel like a vintage exhibition print without relying on readable text. Rich painterly detail, believable skin, refined hands, symmetrical composition, premium editorial finish, dramatic yet graceful mood.',
width: 1024,
height: 1536,
providerSettings: {
openai: {
background: 'opaque',
quality: 'high'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/2c91d5eb-995a-4a87-a20b-1270e1b1891e.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": "openai:4@1",
"positivePrompt": "Transform the reference portrait into a luxurious Art Nouveau poster portrait infused with deep-sea bioluminescent fantasy. Preserve the subject's facial identity, pose, gaze direction, and upper-body framing from the reference image. Replace the simple outfit with an elegant gown made of layered translucent fabrics, pearl details, and subtle shell-inspired ornamentation. Surround her with flowing organic linework, iridescent jellyfish-glass motifs, moonlit teal and violet glow, gilded border accents, and delicate typography-like decorative shapes that feel like a vintage exhibition print without relying on readable text. Rich painterly detail, believable skin, refined hands, symmetrical composition, premium editorial finish, dramatic yet graceful mood.",
"width": 1024,
"height": 1536,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2c91d5eb-995a-4a87-a20b-1270e1b1891e.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": "ad671763-1107-4d37-b677-5139195552d6",
"model": "openai:4@1",
"positivePrompt": "Transform the reference portrait into a luxurious Art Nouveau poster portrait infused with deep-sea bioluminescent fantasy. Preserve the subject's facial identity, pose, gaze direction, and upper-body framing from the reference image. Replace the simple outfit with an elegant gown made of layered translucent fabrics, pearl details, and subtle shell-inspired ornamentation. Surround her with flowing organic linework, iridescent jellyfish-glass motifs, moonlit teal and violet glow, gilded border accents, and delicate typography-like decorative shapes that feel like a vintage exhibition print without relying on readable text. Rich painterly detail, believable skin, refined hands, symmetrical composition, premium editorial finish, dramatic yet graceful mood.",
"width": 1024,
"height": 1536,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2c91d5eb-995a-4a87-a20b-1270e1b1891e.jpg"
]
}
}
]'runware run openai:4@1 \
positivePrompt="Transform the reference portrait into a luxurious Art Nouveau poster portrait infused with deep-sea bioluminescent fantasy. Preserve the subject's facial identity, pose, gaze direction, and upper-body framing from the reference image. Replace the simple outfit with an elegant gown made of layered translucent fabrics, pearl details, and subtle shell-inspired ornamentation. Surround her with flowing organic linework, iridescent jellyfish-glass motifs, moonlit teal and violet glow, gilded border accents, and delicate typography-like decorative shapes that feel like a vintage exhibition print without relying on readable text. Rich painterly detail, believable skin, refined hands, symmetrical composition, premium editorial finish, dramatic yet graceful mood." \
width=1024 \
height=1536 \
providerSettings.openai.background=opaque \
providerSettings.openai.quality=high \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/2c91d5eb-995a-4a87-a20b-1270e1b1891e.jpg{
"taskType": "imageInference",
"taskUUID": "ad671763-1107-4d37-b677-5139195552d6",
"model": "openai:4@1",
"positivePrompt": "Transform the reference portrait into a luxurious Art Nouveau poster portrait infused with deep-sea bioluminescent fantasy. Preserve the subject's facial identity, pose, gaze direction, and upper-body framing from the reference image. Replace the simple outfit with an elegant gown made of layered translucent fabrics, pearl details, and subtle shell-inspired ornamentation. Surround her with flowing organic linework, iridescent jellyfish-glass motifs, moonlit teal and violet glow, gilded border accents, and delicate typography-like decorative shapes that feel like a vintage exhibition print without relying on readable text. Rich painterly detail, believable skin, refined hands, symmetrical composition, premium editorial finish, dramatic yet graceful mood.",
"width": 1024,
"height": 1536,
"providerSettings": {
"openai": {
"background": "opaque",
"quality": "high"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2c91d5eb-995a-4a87-a20b-1270e1b1891e.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "ad671763-1107-4d37-b677-5139195552d6",
"imageUUID": "1acd62f5-17a6-4be9-8276-edefd7b9417e",
"imageURL": "https://im.runware.ai/image/os/a25d05/ws/3/ii/1acd62f5-17a6-4be9-8276-edefd7b9417e.jpg",
"cost": 0.20312
}