live
MODEL IDideogram:3@2

Ideogram 2.0 Remix

Ideogram
by

Ideogram 2.0 Remix lets you rework existing images while preserving structure and layout. Change styles or mood, adjust composition, and iterate quickly from a reference image. Ideal for designers who need fast visual variants and style exploration from prior outputs.

Ideogram 2.0 Remix

reference-to-image

Heritage Telescope Tourism Hero Image$0.08~18s
Heritage Telescope Tourism Hero Image

Replace the plain studio background with an atmospheric Art Deco seaside pier at blue hour while preserving the reference telescope as the unmistakable hero subject. Keep its exact silhouette, proportions, navy cast-iron pedestal, cream enamel head, chrome controls, weathering, and viewing direction. Position it naturally on rain-darkened timber boards near the pier railing, with physically accurate contact shadows and a few subtle reflections from warm globe lamps. Beyond the railing, show a calm deep-cobalt sea, a thin coral sunset at the horizon, distant coastal lights, and faint mist. Premium photorealistic tourism campaign photography, cinematic yet believable, cool blue environment contrasted by restrained amber practical lighting, crisp detail on the telescope, shallow atmospheric depth, eye-level three-quarter composition, square crop, generous breathing room, no typography.

Try in Playground
import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'ideogram:3@2',
  positivePrompt: 'Replace the plain studio background with an atmospheric Art Deco seaside pier at blue hour while preserving the reference telescope as the unmistakable hero subject. Keep its exact silhouette, proportions, navy cast-iron pedestal, cream enamel head, chrome controls, weathering, and viewing direction. Position it naturally on rain-darkened timber boards near the pier railing, with physically accurate contact shadows and a few subtle reflections from warm globe lamps. Beyond the railing, show a calm deep-cobalt sea, a thin coral sunset at the horizon, distant coastal lights, and faint mist. Premium photorealistic tourism campaign photography, cinematic yet believable, cool blue environment contrasted by restrained amber practical lighting, crisp detail on the telescope, shallow atmospheric depth, eye-level three-quarter composition, square crop, generous breathing room, no typography.',
  negativePrompt: 'Extra telescopes, duplicated parts, altered product design, floating subject, incorrect scale, warped pedestal, people, crowds, boats dominating the frame, logos, captions, signage, readable text, fantasy elements, heavy fog obscuring the subject, oversaturated colors, illustration, CGI appearance.',
  width: 1024,
  height: 1024,
  providerSettings: {
    ideogram: {
      magicPrompt: 'AUTO'
    }
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/99584063-d3ba-4b8c-b23a-0e552238a960.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": "ideogram:3@2",
            "positivePrompt": "Replace the plain studio background with an atmospheric Art Deco seaside pier at blue hour while preserving the reference telescope as the unmistakable hero subject. Keep its exact silhouette, proportions, navy cast-iron pedestal, cream enamel head, chrome controls, weathering, and viewing direction. Position it naturally on rain-darkened timber boards near the pier railing, with physically accurate contact shadows and a few subtle reflections from warm globe lamps. Beyond the railing, show a calm deep-cobalt sea, a thin coral sunset at the horizon, distant coastal lights, and faint mist. Premium photorealistic tourism campaign photography, cinematic yet believable, cool blue environment contrasted by restrained amber practical lighting, crisp detail on the telescope, shallow atmospheric depth, eye-level three-quarter composition, square crop, generous breathing room, no typography.",
            "negativePrompt": "Extra telescopes, duplicated parts, altered product design, floating subject, incorrect scale, warped pedestal, people, crowds, boats dominating the frame, logos, captions, signage, readable text, fantasy elements, heavy fog obscuring the subject, oversaturated colors, illustration, CGI appearance.",
            "width": 1024,
            "height": 1024,
            "providerSettings": {
                "ideogram": {
                    "magicPrompt": "AUTO"
                }
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/99584063-d3ba-4b8c-b23a-0e552238a960.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": "6ff79560-e95e-42a0-8cce-ec29083aeca9",
      "model": "ideogram:3@2",
      "positivePrompt": "Replace the plain studio background with an atmospheric Art Deco seaside pier at blue hour while preserving the reference telescope as the unmistakable hero subject. Keep its exact silhouette, proportions, navy cast-iron pedestal, cream enamel head, chrome controls, weathering, and viewing direction. Position it naturally on rain-darkened timber boards near the pier railing, with physically accurate contact shadows and a few subtle reflections from warm globe lamps. Beyond the railing, show a calm deep-cobalt sea, a thin coral sunset at the horizon, distant coastal lights, and faint mist. Premium photorealistic tourism campaign photography, cinematic yet believable, cool blue environment contrasted by restrained amber practical lighting, crisp detail on the telescope, shallow atmospheric depth, eye-level three-quarter composition, square crop, generous breathing room, no typography.",
      "negativePrompt": "Extra telescopes, duplicated parts, altered product design, floating subject, incorrect scale, warped pedestal, people, crowds, boats dominating the frame, logos, captions, signage, readable text, fantasy elements, heavy fog obscuring the subject, oversaturated colors, illustration, CGI appearance.",
      "width": 1024,
      "height": 1024,
      "providerSettings": {
        "ideogram": {
          "magicPrompt": "AUTO"
        }
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/99584063-d3ba-4b8c-b23a-0e552238a960.jpg"
        ]
      }
    }
  ]'
runware run ideogram:3@2 \
  positivePrompt="Replace the plain studio background with an atmospheric Art Deco seaside pier at blue hour while preserving the reference telescope as the unmistakable hero subject. Keep its exact silhouette, proportions, navy cast-iron pedestal, cream enamel head, chrome controls, weathering, and viewing direction. Position it naturally on rain-darkened timber boards near the pier railing, with physically accurate contact shadows and a few subtle reflections from warm globe lamps. Beyond the railing, show a calm deep-cobalt sea, a thin coral sunset at the horizon, distant coastal lights, and faint mist. Premium photorealistic tourism campaign photography, cinematic yet believable, cool blue environment contrasted by restrained amber practical lighting, crisp detail on the telescope, shallow atmospheric depth, eye-level three-quarter composition, square crop, generous breathing room, no typography." \
  negativePrompt="Extra telescopes, duplicated parts, altered product design, floating subject, incorrect scale, warped pedestal, people, crowds, boats dominating the frame, logos, captions, signage, readable text, fantasy elements, heavy fog obscuring the subject, oversaturated colors, illustration, CGI appearance." \
  width=1024 \
  height=1024 \
  providerSettings.ideogram.magicPrompt=AUTO \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/99584063-d3ba-4b8c-b23a-0e552238a960.jpg
{
  "taskType": "imageInference",
  "taskUUID": "6ff79560-e95e-42a0-8cce-ec29083aeca9",
  "model": "ideogram:3@2",
  "positivePrompt": "Replace the plain studio background with an atmospheric Art Deco seaside pier at blue hour while preserving the reference telescope as the unmistakable hero subject. Keep its exact silhouette, proportions, navy cast-iron pedestal, cream enamel head, chrome controls, weathering, and viewing direction. Position it naturally on rain-darkened timber boards near the pier railing, with physically accurate contact shadows and a few subtle reflections from warm globe lamps. Beyond the railing, show a calm deep-cobalt sea, a thin coral sunset at the horizon, distant coastal lights, and faint mist. Premium photorealistic tourism campaign photography, cinematic yet believable, cool blue environment contrasted by restrained amber practical lighting, crisp detail on the telescope, shallow atmospheric depth, eye-level three-quarter composition, square crop, generous breathing room, no typography.",
  "negativePrompt": "Extra telescopes, duplicated parts, altered product design, floating subject, incorrect scale, warped pedestal, people, crowds, boats dominating the frame, logos, captions, signage, readable text, fantasy elements, heavy fog obscuring the subject, oversaturated colors, illustration, CGI appearance.",
  "width": 1024,
  "height": 1024,
  "providerSettings": {
    "ideogram": {
      "magicPrompt": "AUTO"
    }
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/99584063-d3ba-4b8c-b23a-0e552238a960.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "6ff79560-e95e-42a0-8cce-ec29083aeca9",
  "imageUUID": "80f821a4-160f-47fd-a21b-a59ef0884004",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/80f821a4-160f-47fd-a21b-a59ef0884004.jpg",
  "seed": 626190251,
  "cost": 0.08
}

reference-to-image

Antarctic Station Winter Editorial$0.08~10s
Antarctic Station Winter Editorial

Remix the source photograph into a photorealistic Antarctic research station during the depths of austral winter polar night. Preserve the exact camera position, square framing, terrain contours, arrangement and geometry of all three red elevated modules, enclosed walkways, satellite dome, antenna mast, parked orange snowcat, crates and tracks so the facility remains immediately recognizable. Replace the bright summer sky with deep cobalt darkness and a restrained green aurora low across the horizon. Relight the scene with warm amber window light, practical safety lamps and cold moonlit snow; create believable pools of illumination, long soft shadows and subtle reflections on wind-polished ice. Add fresh windblown snow gathered around supports and tracks, delicate frost on metal edges and faint airborne ice crystals, without hiding architectural details. High-end polar documentary photography for an institutional annual report, natural exposure, crisp material texture, quiet operational mood, scientifically credible environment, no added text or branding.

Try in Playground
import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'ideogram:3@2',
  positivePrompt: 'Remix the source photograph into a photorealistic Antarctic research station during the depths of austral winter polar night. Preserve the exact camera position, square framing, terrain contours, arrangement and geometry of all three red elevated modules, enclosed walkways, satellite dome, antenna mast, parked orange snowcat, crates and tracks so the facility remains immediately recognizable. Replace the bright summer sky with deep cobalt darkness and a restrained green aurora low across the horizon. Relight the scene with warm amber window light, practical safety lamps and cold moonlit snow; create believable pools of illumination, long soft shadows and subtle reflections on wind-polished ice. Add fresh windblown snow gathered around supports and tracks, delicate frost on metal edges and faint airborne ice crystals, without hiding architectural details. High-end polar documentary photography for an institutional annual report, natural exposure, crisp material texture, quiet operational mood, scientifically credible environment, no added text or branding.',
  negativePrompt: 'Changed viewpoint, altered building design, moved structures, extra buildings, missing snowcat, buried facility, dramatic fantasy sky, oversized aurora, daytime sunlight, tropical elements, people, illustration, CGI appearance, excessive bloom, illegible details, text, captions, logos, watermark, border or mockup.',
  width: 1024,
  height: 1024,
  providerSettings: {
    ideogram: {
      magicPrompt: 'AUTO'
    }
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/5407353b-7661-4e75-a005-6b6306cddab1.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": "ideogram:3@2",
            "positivePrompt": "Remix the source photograph into a photorealistic Antarctic research station during the depths of austral winter polar night. Preserve the exact camera position, square framing, terrain contours, arrangement and geometry of all three red elevated modules, enclosed walkways, satellite dome, antenna mast, parked orange snowcat, crates and tracks so the facility remains immediately recognizable. Replace the bright summer sky with deep cobalt darkness and a restrained green aurora low across the horizon. Relight the scene with warm amber window light, practical safety lamps and cold moonlit snow; create believable pools of illumination, long soft shadows and subtle reflections on wind-polished ice. Add fresh windblown snow gathered around supports and tracks, delicate frost on metal edges and faint airborne ice crystals, without hiding architectural details. High-end polar documentary photography for an institutional annual report, natural exposure, crisp material texture, quiet operational mood, scientifically credible environment, no added text or branding.",
            "negativePrompt": "Changed viewpoint, altered building design, moved structures, extra buildings, missing snowcat, buried facility, dramatic fantasy sky, oversized aurora, daytime sunlight, tropical elements, people, illustration, CGI appearance, excessive bloom, illegible details, text, captions, logos, watermark, border or mockup.",
            "width": 1024,
            "height": 1024,
            "providerSettings": {
                "ideogram": {
                    "magicPrompt": "AUTO"
                }
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/5407353b-7661-4e75-a005-6b6306cddab1.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": "84c89a94-436d-4d41-bc99-e62a86c80503",
      "model": "ideogram:3@2",
      "positivePrompt": "Remix the source photograph into a photorealistic Antarctic research station during the depths of austral winter polar night. Preserve the exact camera position, square framing, terrain contours, arrangement and geometry of all three red elevated modules, enclosed walkways, satellite dome, antenna mast, parked orange snowcat, crates and tracks so the facility remains immediately recognizable. Replace the bright summer sky with deep cobalt darkness and a restrained green aurora low across the horizon. Relight the scene with warm amber window light, practical safety lamps and cold moonlit snow; create believable pools of illumination, long soft shadows and subtle reflections on wind-polished ice. Add fresh windblown snow gathered around supports and tracks, delicate frost on metal edges and faint airborne ice crystals, without hiding architectural details. High-end polar documentary photography for an institutional annual report, natural exposure, crisp material texture, quiet operational mood, scientifically credible environment, no added text or branding.",
      "negativePrompt": "Changed viewpoint, altered building design, moved structures, extra buildings, missing snowcat, buried facility, dramatic fantasy sky, oversized aurora, daytime sunlight, tropical elements, people, illustration, CGI appearance, excessive bloom, illegible details, text, captions, logos, watermark, border or mockup.",
      "width": 1024,
      "height": 1024,
      "providerSettings": {
        "ideogram": {
          "magicPrompt": "AUTO"
        }
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/5407353b-7661-4e75-a005-6b6306cddab1.jpg"
        ]
      }
    }
  ]'
runware run ideogram:3@2 \
  positivePrompt="Remix the source photograph into a photorealistic Antarctic research station during the depths of austral winter polar night. Preserve the exact camera position, square framing, terrain contours, arrangement and geometry of all three red elevated modules, enclosed walkways, satellite dome, antenna mast, parked orange snowcat, crates and tracks so the facility remains immediately recognizable. Replace the bright summer sky with deep cobalt darkness and a restrained green aurora low across the horizon. Relight the scene with warm amber window light, practical safety lamps and cold moonlit snow; create believable pools of illumination, long soft shadows and subtle reflections on wind-polished ice. Add fresh windblown snow gathered around supports and tracks, delicate frost on metal edges and faint airborne ice crystals, without hiding architectural details. High-end polar documentary photography for an institutional annual report, natural exposure, crisp material texture, quiet operational mood, scientifically credible environment, no added text or branding." \
  negativePrompt="Changed viewpoint, altered building design, moved structures, extra buildings, missing snowcat, buried facility, dramatic fantasy sky, oversized aurora, daytime sunlight, tropical elements, people, illustration, CGI appearance, excessive bloom, illegible details, text, captions, logos, watermark, border or mockup." \
  width=1024 \
  height=1024 \
  providerSettings.ideogram.magicPrompt=AUTO \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/5407353b-7661-4e75-a005-6b6306cddab1.jpg
{
  "taskType": "imageInference",
  "taskUUID": "84c89a94-436d-4d41-bc99-e62a86c80503",
  "model": "ideogram:3@2",
  "positivePrompt": "Remix the source photograph into a photorealistic Antarctic research station during the depths of austral winter polar night. Preserve the exact camera position, square framing, terrain contours, arrangement and geometry of all three red elevated modules, enclosed walkways, satellite dome, antenna mast, parked orange snowcat, crates and tracks so the facility remains immediately recognizable. Replace the bright summer sky with deep cobalt darkness and a restrained green aurora low across the horizon. Relight the scene with warm amber window light, practical safety lamps and cold moonlit snow; create believable pools of illumination, long soft shadows and subtle reflections on wind-polished ice. Add fresh windblown snow gathered around supports and tracks, delicate frost on metal edges and faint airborne ice crystals, without hiding architectural details. High-end polar documentary photography for an institutional annual report, natural exposure, crisp material texture, quiet operational mood, scientifically credible environment, no added text or branding.",
  "negativePrompt": "Changed viewpoint, altered building design, moved structures, extra buildings, missing snowcat, buried facility, dramatic fantasy sky, oversized aurora, daytime sunlight, tropical elements, people, illustration, CGI appearance, excessive bloom, illegible details, text, captions, logos, watermark, border or mockup.",
  "width": 1024,
  "height": 1024,
  "providerSettings": {
    "ideogram": {
      "magicPrompt": "AUTO"
    }
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/5407353b-7661-4e75-a005-6b6306cddab1.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "84c89a94-436d-4d41-bc99-e62a86c80503",
  "imageUUID": "a940bdeb-e1e8-4fcb-9ed8-01549f039683",
  "imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/a940bdeb-e1e8-4fcb-9ed8-01549f039683.jpg",
  "seed": 658777765,
  "cost": 0.08
}