live
MODEL IDbfl:1@3

FLUX.1 Expand [pro]

Black Forest Labs
by

FLUX.1 Expand [pro] is an outpainting model that extends images beyond their original frame while preserving structure, lighting, and style. It supports controlled expansion from real or generated inputs and integrates into image editing or generative workflows that need precise, coherent borders.

FLUX.1 Expand [pro]

expand

Avalanche Patrol Team Portrait$0.05~14s
Avalanche Patrol Team Portrait

Naturally extend the existing documentary group portrait beyond its original frame and preserve every visible patrol member, their faces, uniforms, poses, proportions, and spacing. In the newly revealed area beside the kneeling handler, add one alert avalanche rescue dog: a medium-sized golden retriever sitting calmly in the snow, wearing a practical burnt-orange search-and-rescue harness with reflective trim. The handler's lowered gloved hand should rest naturally near the dog's shoulder, making the dog feel like an original member of the group. Continue the packed snow, rescue-hut exterior, snow-dusted fir trees, and muted alpine ridgeline seamlessly into the expanded area. Match the source camera height, lens perspective, overcast winter daylight, restrained fill flash, cool blue-gray shadows, crisp editorial detail, and understated annual-report aesthetic. Maintain a credible professional team portrait with realistic paw placement, harness construction, fur texture, footprints, contact shadows, and gentle snow compression beneath the dog. No lettering, logos, borders, collage seams, or duplicated people.

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: 'bfl:1@3',
  positivePrompt: 'Naturally extend the existing documentary group portrait beyond its original frame and preserve every visible patrol member, their faces, uniforms, poses, proportions, and spacing. In the newly revealed area beside the kneeling handler, add one alert avalanche rescue dog: a medium-sized golden retriever sitting calmly in the snow, wearing a practical burnt-orange search-and-rescue harness with reflective trim. The handler\'s lowered gloved hand should rest naturally near the dog\'s shoulder, making the dog feel like an original member of the group. Continue the packed snow, rescue-hut exterior, snow-dusted fir trees, and muted alpine ridgeline seamlessly into the expanded area. Match the source camera height, lens perspective, overcast winter daylight, restrained fill flash, cool blue-gray shadows, crisp editorial detail, and understated annual-report aesthetic. Maintain a credible professional team portrait with realistic paw placement, harness construction, fur texture, footprints, contact shadows, and gentle snow compression beneath the dog. No lettering, logos, borders, collage seams, or duplicated people.',
  outpaint: {
    top: 256,
    bottom: 256,
    left: 512,
    right: 512
  },
  providerSettings: {
    bfl: {
      promptUpsampling: true
    }
  },
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/6a85de55-37f1-404f-b0ef-89725a085489.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": "bfl:1@3",
            "positivePrompt": "Naturally extend the existing documentary group portrait beyond its original frame and preserve every visible patrol member, their faces, uniforms, poses, proportions, and spacing. In the newly revealed area beside the kneeling handler, add one alert avalanche rescue dog: a medium-sized golden retriever sitting calmly in the snow, wearing a practical burnt-orange search-and-rescue harness with reflective trim. The handler's lowered gloved hand should rest naturally near the dog's shoulder, making the dog feel like an original member of the group. Continue the packed snow, rescue-hut exterior, snow-dusted fir trees, and muted alpine ridgeline seamlessly into the expanded area. Match the source camera height, lens perspective, overcast winter daylight, restrained fill flash, cool blue-gray shadows, crisp editorial detail, and understated annual-report aesthetic. Maintain a credible professional team portrait with realistic paw placement, harness construction, fur texture, footprints, contact shadows, and gentle snow compression beneath the dog. No lettering, logos, borders, collage seams, or duplicated people.",
            "outpaint": {
                "top": 256,
                "bottom": 256,
                "left": 512,
                "right": 512
            },
            "providerSettings": {
                "bfl": {
                    "promptUpsampling": True
                }
            },
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/6a85de55-37f1-404f-b0ef-89725a085489.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": "677c6c45-32cb-47ae-b78f-caccd3dd6be2",
      "model": "bfl:1@3",
      "positivePrompt": "Naturally extend the existing documentary group portrait beyond its original frame and preserve every visible patrol member, their faces, uniforms, poses, proportions, and spacing. In the newly revealed area beside the kneeling handler, add one alert avalanche rescue dog: a medium-sized golden retriever sitting calmly in the snow, wearing a practical burnt-orange search-and-rescue harness with reflective trim. The handler's lowered gloved hand should rest naturally near the dog's shoulder, making the dog feel like an original member of the group. Continue the packed snow, rescue-hut exterior, snow-dusted fir trees, and muted alpine ridgeline seamlessly into the expanded area. Match the source camera height, lens perspective, overcast winter daylight, restrained fill flash, cool blue-gray shadows, crisp editorial detail, and understated annual-report aesthetic. Maintain a credible professional team portrait with realistic paw placement, harness construction, fur texture, footprints, contact shadows, and gentle snow compression beneath the dog. No lettering, logos, borders, collage seams, or duplicated people.",
      "outpaint": {
        "top": 256,
        "bottom": 256,
        "left": 512,
        "right": 512
      },
      "providerSettings": {
        "bfl": {
          "promptUpsampling": true
        }
      },
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/6a85de55-37f1-404f-b0ef-89725a085489.jpg"
      }
    }
  ]'
runware run bfl:1@3 \
  positivePrompt="Naturally extend the existing documentary group portrait beyond its original frame and preserve every visible patrol member, their faces, uniforms, poses, proportions, and spacing. In the newly revealed area beside the kneeling handler, add one alert avalanche rescue dog: a medium-sized golden retriever sitting calmly in the snow, wearing a practical burnt-orange search-and-rescue harness with reflective trim. The handler's lowered gloved hand should rest naturally near the dog's shoulder, making the dog feel like an original member of the group. Continue the packed snow, rescue-hut exterior, snow-dusted fir trees, and muted alpine ridgeline seamlessly into the expanded area. Match the source camera height, lens perspective, overcast winter daylight, restrained fill flash, cool blue-gray shadows, crisp editorial detail, and understated annual-report aesthetic. Maintain a credible professional team portrait with realistic paw placement, harness construction, fur texture, footprints, contact shadows, and gentle snow compression beneath the dog. No lettering, logos, borders, collage seams, or duplicated people." \
  outpaint.top=256 \
  outpaint.bottom=256 \
  outpaint.left=512 \
  outpaint.right=512 \
  providerSettings.bfl.promptUpsampling=true \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/6a85de55-37f1-404f-b0ef-89725a085489.jpg
{
  "taskType": "imageInference",
  "taskUUID": "677c6c45-32cb-47ae-b78f-caccd3dd6be2",
  "model": "bfl:1@3",
  "positivePrompt": "Naturally extend the existing documentary group portrait beyond its original frame and preserve every visible patrol member, their faces, uniforms, poses, proportions, and spacing. In the newly revealed area beside the kneeling handler, add one alert avalanche rescue dog: a medium-sized golden retriever sitting calmly in the snow, wearing a practical burnt-orange search-and-rescue harness with reflective trim. The handler's lowered gloved hand should rest naturally near the dog's shoulder, making the dog feel like an original member of the group. Continue the packed snow, rescue-hut exterior, snow-dusted fir trees, and muted alpine ridgeline seamlessly into the expanded area. Match the source camera height, lens perspective, overcast winter daylight, restrained fill flash, cool blue-gray shadows, crisp editorial detail, and understated annual-report aesthetic. Maintain a credible professional team portrait with realistic paw placement, harness construction, fur texture, footprints, contact shadows, and gentle snow compression beneath the dog. No lettering, logos, borders, collage seams, or duplicated people.",
  "outpaint": {
    "top": 256,
    "bottom": 256,
    "left": 512,
    "right": 512
  },
  "providerSettings": {
    "bfl": {
      "promptUpsampling": true
    }
  },
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/6a85de55-37f1-404f-b0ef-89725a085489.jpg"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "677c6c45-32cb-47ae-b78f-caccd3dd6be2",
  "imageUUID": "7c62a3f0-c6da-4bba-ac98-4244f56611ac",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/7c62a3f0-c6da-4bba-ac98-4244f56611ac.jpg",
  "seed": 1819796342,
  "cost": 0.05
}

expand

Monsoon Observatory Campaign Banner$0.05~14s
Monsoon Observatory Campaign Banner

Extend the source photograph into a wide panoramic campaign image for an astronomical observatory's summer night program. Preserve the exact white observatory dome, entrance, proportions, camera height, 50mm perspective, post-rain blue-hour lighting, realistic materials, and restrained documentary photographic style. Continue the rust-red Arizona hillside naturally beyond the original frame with wet gravel, shallow reflective puddles, creosote bushes, ocotillo, and scattered saguaros. Broaden the indigo sky into a dramatic but credible late-monsoon dusk: a retreating charcoal storm shelf on the distant horizon, a subtle rain shaft far away, thin breaks revealing the first stars, and a faint warm afterglow beneath the clouds. Extend the observatory's warm practical lights and their reflections consistently into the surrounding path. Create a spacious, sophisticated panoramic composition with strong environmental context and quiet anticipation, using deep indigo, oxidized red earth, muted sage, and small amber highlights. Photorealistic editorial architecture photography, natural atmospheric depth, no added lettering or signage.

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: 'bfl:1@3',
  positivePrompt: 'Extend the source photograph into a wide panoramic campaign image for an astronomical observatory\'s summer night program. Preserve the exact white observatory dome, entrance, proportions, camera height, 50mm perspective, post-rain blue-hour lighting, realistic materials, and restrained documentary photographic style. Continue the rust-red Arizona hillside naturally beyond the original frame with wet gravel, shallow reflective puddles, creosote bushes, ocotillo, and scattered saguaros. Broaden the indigo sky into a dramatic but credible late-monsoon dusk: a retreating charcoal storm shelf on the distant horizon, a subtle rain shaft far away, thin breaks revealing the first stars, and a faint warm afterglow beneath the clouds. Extend the observatory\'s warm practical lights and their reflections consistently into the surrounding path. Create a spacious, sophisticated panoramic composition with strong environmental context and quiet anticipation, using deep indigo, oxidized red earth, muted sage, and small amber highlights. Photorealistic editorial architecture photography, natural atmospheric depth, no added lettering or signage.',
  outpaint: {
    top: 256,
    bottom: 256,
    left: 512,
    right: 512
  },
  providerSettings: {
    bfl: {
      promptUpsampling: true
    }
  },
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/569c461c-150c-4d20-b5e3-ba4ead859f3a.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": "bfl:1@3",
            "positivePrompt": "Extend the source photograph into a wide panoramic campaign image for an astronomical observatory's summer night program. Preserve the exact white observatory dome, entrance, proportions, camera height, 50mm perspective, post-rain blue-hour lighting, realistic materials, and restrained documentary photographic style. Continue the rust-red Arizona hillside naturally beyond the original frame with wet gravel, shallow reflective puddles, creosote bushes, ocotillo, and scattered saguaros. Broaden the indigo sky into a dramatic but credible late-monsoon dusk: a retreating charcoal storm shelf on the distant horizon, a subtle rain shaft far away, thin breaks revealing the first stars, and a faint warm afterglow beneath the clouds. Extend the observatory's warm practical lights and their reflections consistently into the surrounding path. Create a spacious, sophisticated panoramic composition with strong environmental context and quiet anticipation, using deep indigo, oxidized red earth, muted sage, and small amber highlights. Photorealistic editorial architecture photography, natural atmospheric depth, no added lettering or signage.",
            "outpaint": {
                "top": 256,
                "bottom": 256,
                "left": 512,
                "right": 512
            },
            "providerSettings": {
                "bfl": {
                    "promptUpsampling": True
                }
            },
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/569c461c-150c-4d20-b5e3-ba4ead859f3a.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": "7fb2e9e7-31c3-4e13-81df-08924fd7e856",
      "model": "bfl:1@3",
      "positivePrompt": "Extend the source photograph into a wide panoramic campaign image for an astronomical observatory's summer night program. Preserve the exact white observatory dome, entrance, proportions, camera height, 50mm perspective, post-rain blue-hour lighting, realistic materials, and restrained documentary photographic style. Continue the rust-red Arizona hillside naturally beyond the original frame with wet gravel, shallow reflective puddles, creosote bushes, ocotillo, and scattered saguaros. Broaden the indigo sky into a dramatic but credible late-monsoon dusk: a retreating charcoal storm shelf on the distant horizon, a subtle rain shaft far away, thin breaks revealing the first stars, and a faint warm afterglow beneath the clouds. Extend the observatory's warm practical lights and their reflections consistently into the surrounding path. Create a spacious, sophisticated panoramic composition with strong environmental context and quiet anticipation, using deep indigo, oxidized red earth, muted sage, and small amber highlights. Photorealistic editorial architecture photography, natural atmospheric depth, no added lettering or signage.",
      "outpaint": {
        "top": 256,
        "bottom": 256,
        "left": 512,
        "right": 512
      },
      "providerSettings": {
        "bfl": {
          "promptUpsampling": true
        }
      },
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/569c461c-150c-4d20-b5e3-ba4ead859f3a.jpg"
      }
    }
  ]'
runware run bfl:1@3 \
  positivePrompt="Extend the source photograph into a wide panoramic campaign image for an astronomical observatory's summer night program. Preserve the exact white observatory dome, entrance, proportions, camera height, 50mm perspective, post-rain blue-hour lighting, realistic materials, and restrained documentary photographic style. Continue the rust-red Arizona hillside naturally beyond the original frame with wet gravel, shallow reflective puddles, creosote bushes, ocotillo, and scattered saguaros. Broaden the indigo sky into a dramatic but credible late-monsoon dusk: a retreating charcoal storm shelf on the distant horizon, a subtle rain shaft far away, thin breaks revealing the first stars, and a faint warm afterglow beneath the clouds. Extend the observatory's warm practical lights and their reflections consistently into the surrounding path. Create a spacious, sophisticated panoramic composition with strong environmental context and quiet anticipation, using deep indigo, oxidized red earth, muted sage, and small amber highlights. Photorealistic editorial architecture photography, natural atmospheric depth, no added lettering or signage." \
  outpaint.top=256 \
  outpaint.bottom=256 \
  outpaint.left=512 \
  outpaint.right=512 \
  providerSettings.bfl.promptUpsampling=true \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/569c461c-150c-4d20-b5e3-ba4ead859f3a.jpg
{
  "taskType": "imageInference",
  "taskUUID": "7fb2e9e7-31c3-4e13-81df-08924fd7e856",
  "model": "bfl:1@3",
  "positivePrompt": "Extend the source photograph into a wide panoramic campaign image for an astronomical observatory's summer night program. Preserve the exact white observatory dome, entrance, proportions, camera height, 50mm perspective, post-rain blue-hour lighting, realistic materials, and restrained documentary photographic style. Continue the rust-red Arizona hillside naturally beyond the original frame with wet gravel, shallow reflective puddles, creosote bushes, ocotillo, and scattered saguaros. Broaden the indigo sky into a dramatic but credible late-monsoon dusk: a retreating charcoal storm shelf on the distant horizon, a subtle rain shaft far away, thin breaks revealing the first stars, and a faint warm afterglow beneath the clouds. Extend the observatory's warm practical lights and their reflections consistently into the surrounding path. Create a spacious, sophisticated panoramic composition with strong environmental context and quiet anticipation, using deep indigo, oxidized red earth, muted sage, and small amber highlights. Photorealistic editorial architecture photography, natural atmospheric depth, no added lettering or signage.",
  "outpaint": {
    "top": 256,
    "bottom": 256,
    "left": 512,
    "right": 512
  },
  "providerSettings": {
    "bfl": {
      "promptUpsampling": true
    }
  },
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/569c461c-150c-4d20-b5e3-ba4ead859f3a.jpg"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "7fb2e9e7-31c3-4e13-81df-08924fd7e856",
  "imageUUID": "63c59b68-b766-4f8b-8534-e10b8f4ae362",
  "imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/63c59b68-b766-4f8b-8534-e10b8f4ae362.jpg",
  "seed": 990221234,
  "cost": 0.05
}

expand

Pipe Organ Restoration Editorial Panorama$0.05~14s
Pipe Organ Restoration Editorial Panorama

Outpaint the source photograph horizontally into a seamless 2:1 editorial panorama while preserving the central organ restorer, her pose, face, clothing, tuning tool and pipe exactly as shown. Continue the historic workshop naturally beyond both original edges with correct eye-level perspective: on the left, a tall mullioned window casting the same warm directional light across a walnut workbench, neatly arranged leather bellows tools, calipers, cotton gloves and several horizontal wooden pipes awaiting repair; on the right, receding ranks of burnished tin and dark wooden organ pipes, a rolling library ladder, labeled archival drawers without legible writing, and part of an open organ wind-chest. Maintain consistent timber architecture, realistic scale, lens character, shadows, grain and shallow-to-moderate depth of field. Refined cultural-heritage magazine photography, quiet and meticulous mood, muted pewter, aged brass, walnut brown and indigo palette. Balanced panoramic composition with the craftsperson remaining the clear focal point. No duplicated people, no extra limbs, no warped pipes, no modern machinery, no signage, no logos, no added text.

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: 'bfl:1@3',
  positivePrompt: 'Outpaint the source photograph horizontally into a seamless 2:1 editorial panorama while preserving the central organ restorer, her pose, face, clothing, tuning tool and pipe exactly as shown. Continue the historic workshop naturally beyond both original edges with correct eye-level perspective: on the left, a tall mullioned window casting the same warm directional light across a walnut workbench, neatly arranged leather bellows tools, calipers, cotton gloves and several horizontal wooden pipes awaiting repair; on the right, receding ranks of burnished tin and dark wooden organ pipes, a rolling library ladder, labeled archival drawers without legible writing, and part of an open organ wind-chest. Maintain consistent timber architecture, realistic scale, lens character, shadows, grain and shallow-to-moderate depth of field. Refined cultural-heritage magazine photography, quiet and meticulous mood, muted pewter, aged brass, walnut brown and indigo palette. Balanced panoramic composition with the craftsperson remaining the clear focal point. No duplicated people, no extra limbs, no warped pipes, no modern machinery, no signage, no logos, no added text.',
  outpaint: {
    left: 512,
    right: 512,
    top: 256,
    bottom: 256
  },
  providerSettings: {
    bfl: {
      promptUpsampling: true
    }
  },
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/7106fb71-4e64-45b4-b176-43ee4780b0c4.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": "bfl:1@3",
            "positivePrompt": "Outpaint the source photograph horizontally into a seamless 2:1 editorial panorama while preserving the central organ restorer, her pose, face, clothing, tuning tool and pipe exactly as shown. Continue the historic workshop naturally beyond both original edges with correct eye-level perspective: on the left, a tall mullioned window casting the same warm directional light across a walnut workbench, neatly arranged leather bellows tools, calipers, cotton gloves and several horizontal wooden pipes awaiting repair; on the right, receding ranks of burnished tin and dark wooden organ pipes, a rolling library ladder, labeled archival drawers without legible writing, and part of an open organ wind-chest. Maintain consistent timber architecture, realistic scale, lens character, shadows, grain and shallow-to-moderate depth of field. Refined cultural-heritage magazine photography, quiet and meticulous mood, muted pewter, aged brass, walnut brown and indigo palette. Balanced panoramic composition with the craftsperson remaining the clear focal point. No duplicated people, no extra limbs, no warped pipes, no modern machinery, no signage, no logos, no added text.",
            "outpaint": {
                "left": 512,
                "right": 512,
                "top": 256,
                "bottom": 256
            },
            "providerSettings": {
                "bfl": {
                    "promptUpsampling": True
                }
            },
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/7106fb71-4e64-45b4-b176-43ee4780b0c4.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": "7bd3e475-d667-49f9-a1f3-237ca7295388",
      "model": "bfl:1@3",
      "positivePrompt": "Outpaint the source photograph horizontally into a seamless 2:1 editorial panorama while preserving the central organ restorer, her pose, face, clothing, tuning tool and pipe exactly as shown. Continue the historic workshop naturally beyond both original edges with correct eye-level perspective: on the left, a tall mullioned window casting the same warm directional light across a walnut workbench, neatly arranged leather bellows tools, calipers, cotton gloves and several horizontal wooden pipes awaiting repair; on the right, receding ranks of burnished tin and dark wooden organ pipes, a rolling library ladder, labeled archival drawers without legible writing, and part of an open organ wind-chest. Maintain consistent timber architecture, realistic scale, lens character, shadows, grain and shallow-to-moderate depth of field. Refined cultural-heritage magazine photography, quiet and meticulous mood, muted pewter, aged brass, walnut brown and indigo palette. Balanced panoramic composition with the craftsperson remaining the clear focal point. No duplicated people, no extra limbs, no warped pipes, no modern machinery, no signage, no logos, no added text.",
      "outpaint": {
        "left": 512,
        "right": 512,
        "top": 256,
        "bottom": 256
      },
      "providerSettings": {
        "bfl": {
          "promptUpsampling": true
        }
      },
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/7106fb71-4e64-45b4-b176-43ee4780b0c4.jpg"
      }
    }
  ]'
runware run bfl:1@3 \
  positivePrompt="Outpaint the source photograph horizontally into a seamless 2:1 editorial panorama while preserving the central organ restorer, her pose, face, clothing, tuning tool and pipe exactly as shown. Continue the historic workshop naturally beyond both original edges with correct eye-level perspective: on the left, a tall mullioned window casting the same warm directional light across a walnut workbench, neatly arranged leather bellows tools, calipers, cotton gloves and several horizontal wooden pipes awaiting repair; on the right, receding ranks of burnished tin and dark wooden organ pipes, a rolling library ladder, labeled archival drawers without legible writing, and part of an open organ wind-chest. Maintain consistent timber architecture, realistic scale, lens character, shadows, grain and shallow-to-moderate depth of field. Refined cultural-heritage magazine photography, quiet and meticulous mood, muted pewter, aged brass, walnut brown and indigo palette. Balanced panoramic composition with the craftsperson remaining the clear focal point. No duplicated people, no extra limbs, no warped pipes, no modern machinery, no signage, no logos, no added text." \
  outpaint.left=512 \
  outpaint.right=512 \
  outpaint.top=256 \
  outpaint.bottom=256 \
  providerSettings.bfl.promptUpsampling=true \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/7106fb71-4e64-45b4-b176-43ee4780b0c4.jpg
{
  "taskType": "imageInference",
  "taskUUID": "7bd3e475-d667-49f9-a1f3-237ca7295388",
  "model": "bfl:1@3",
  "positivePrompt": "Outpaint the source photograph horizontally into a seamless 2:1 editorial panorama while preserving the central organ restorer, her pose, face, clothing, tuning tool and pipe exactly as shown. Continue the historic workshop naturally beyond both original edges with correct eye-level perspective: on the left, a tall mullioned window casting the same warm directional light across a walnut workbench, neatly arranged leather bellows tools, calipers, cotton gloves and several horizontal wooden pipes awaiting repair; on the right, receding ranks of burnished tin and dark wooden organ pipes, a rolling library ladder, labeled archival drawers without legible writing, and part of an open organ wind-chest. Maintain consistent timber architecture, realistic scale, lens character, shadows, grain and shallow-to-moderate depth of field. Refined cultural-heritage magazine photography, quiet and meticulous mood, muted pewter, aged brass, walnut brown and indigo palette. Balanced panoramic composition with the craftsperson remaining the clear focal point. No duplicated people, no extra limbs, no warped pipes, no modern machinery, no signage, no logos, no added text.",
  "outpaint": {
    "left": 512,
    "right": 512,
    "top": 256,
    "bottom": 256
  },
  "providerSettings": {
    "bfl": {
      "promptUpsampling": true
    }
  },
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/7106fb71-4e64-45b4-b176-43ee4780b0c4.jpg"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "7bd3e475-d667-49f9-a1f3-237ca7295388",
  "imageUUID": "4d3e3435-5b7e-4be4-83dd-2284fb4ad7a1",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/4d3e3435-5b7e-4be4-83dd-2284fb4ad7a1.jpg",
  "seed": 138126638,
  "cost": 0.05
}

expand

Meteorite Conservation Magazine Opener$0.05~15s
Meteorite Conservation Magazine Opener

Extend the source photograph horizontally into a complete planetary-materials conservation laboratory for a wide science magazine opener. Preserve the conservator, meteorite, foam tray, workbench, pose, facial features, clothing, proportions, camera height, lens perspective, lighting direction, and documentary photographic style exactly as shown. Continue the stainless-steel bench naturally beyond both original edges. Reveal a meticulous working laboratory with matte gray cabinetry, a glass desiccator containing several small labeled-but-unreadable rock samples, precision calipers, a compact binocular microscope, archival specimen drawers, anti-static mats, pale storage boxes, and a wheeled instrument cart. Add a restrained glimpse of an amber-lit humidity chamber on the far left and neatly arranged mineral sample shelves on the far right. Match the source's cool fluorescent overhead light, subtle reflections, realistic shadows, moderate depth of field, and neutral color rendering; let the meteorite's oxidized rust and umber tones remain the visual accent. Keep the room credible, orderly, and actively used rather than futuristic or theatrical. Balanced editorial composition with generous uncluttered laboratory wall space around the central subject. Seamless photorealistic continuation with no visible borders, duplicated objects, warped furniture, added people, logos, captions, or on-image text.

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: 'bfl:1@3',
  positivePrompt: 'Extend the source photograph horizontally into a complete planetary-materials conservation laboratory for a wide science magazine opener. Preserve the conservator, meteorite, foam tray, workbench, pose, facial features, clothing, proportions, camera height, lens perspective, lighting direction, and documentary photographic style exactly as shown. Continue the stainless-steel bench naturally beyond both original edges. Reveal a meticulous working laboratory with matte gray cabinetry, a glass desiccator containing several small labeled-but-unreadable rock samples, precision calipers, a compact binocular microscope, archival specimen drawers, anti-static mats, pale storage boxes, and a wheeled instrument cart. Add a restrained glimpse of an amber-lit humidity chamber on the far left and neatly arranged mineral sample shelves on the far right. Match the source\'s cool fluorescent overhead light, subtle reflections, realistic shadows, moderate depth of field, and neutral color rendering; let the meteorite\'s oxidized rust and umber tones remain the visual accent. Keep the room credible, orderly, and actively used rather than futuristic or theatrical. Balanced editorial composition with generous uncluttered laboratory wall space around the central subject. Seamless photorealistic continuation with no visible borders, duplicated objects, warped furniture, added people, logos, captions, or on-image text.',
  outpaint: {
    top: 256,
    bottom: 256,
    left: 512,
    right: 512
  },
  providerSettings: {
    bfl: {
      promptUpsampling: true
    }
  },
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/dce387fa-cd2d-4f63-854d-0ef773174c2a.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": "bfl:1@3",
            "positivePrompt": "Extend the source photograph horizontally into a complete planetary-materials conservation laboratory for a wide science magazine opener. Preserve the conservator, meteorite, foam tray, workbench, pose, facial features, clothing, proportions, camera height, lens perspective, lighting direction, and documentary photographic style exactly as shown. Continue the stainless-steel bench naturally beyond both original edges. Reveal a meticulous working laboratory with matte gray cabinetry, a glass desiccator containing several small labeled-but-unreadable rock samples, precision calipers, a compact binocular microscope, archival specimen drawers, anti-static mats, pale storage boxes, and a wheeled instrument cart. Add a restrained glimpse of an amber-lit humidity chamber on the far left and neatly arranged mineral sample shelves on the far right. Match the source's cool fluorescent overhead light, subtle reflections, realistic shadows, moderate depth of field, and neutral color rendering; let the meteorite's oxidized rust and umber tones remain the visual accent. Keep the room credible, orderly, and actively used rather than futuristic or theatrical. Balanced editorial composition with generous uncluttered laboratory wall space around the central subject. Seamless photorealistic continuation with no visible borders, duplicated objects, warped furniture, added people, logos, captions, or on-image text.",
            "outpaint": {
                "top": 256,
                "bottom": 256,
                "left": 512,
                "right": 512
            },
            "providerSettings": {
                "bfl": {
                    "promptUpsampling": True
                }
            },
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/dce387fa-cd2d-4f63-854d-0ef773174c2a.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": "552eb39a-fa76-478b-b98a-edfaa4e8f319",
      "model": "bfl:1@3",
      "positivePrompt": "Extend the source photograph horizontally into a complete planetary-materials conservation laboratory for a wide science magazine opener. Preserve the conservator, meteorite, foam tray, workbench, pose, facial features, clothing, proportions, camera height, lens perspective, lighting direction, and documentary photographic style exactly as shown. Continue the stainless-steel bench naturally beyond both original edges. Reveal a meticulous working laboratory with matte gray cabinetry, a glass desiccator containing several small labeled-but-unreadable rock samples, precision calipers, a compact binocular microscope, archival specimen drawers, anti-static mats, pale storage boxes, and a wheeled instrument cart. Add a restrained glimpse of an amber-lit humidity chamber on the far left and neatly arranged mineral sample shelves on the far right. Match the source's cool fluorescent overhead light, subtle reflections, realistic shadows, moderate depth of field, and neutral color rendering; let the meteorite's oxidized rust and umber tones remain the visual accent. Keep the room credible, orderly, and actively used rather than futuristic or theatrical. Balanced editorial composition with generous uncluttered laboratory wall space around the central subject. Seamless photorealistic continuation with no visible borders, duplicated objects, warped furniture, added people, logos, captions, or on-image text.",
      "outpaint": {
        "top": 256,
        "bottom": 256,
        "left": 512,
        "right": 512
      },
      "providerSettings": {
        "bfl": {
          "promptUpsampling": true
        }
      },
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/dce387fa-cd2d-4f63-854d-0ef773174c2a.jpg"
      }
    }
  ]'
runware run bfl:1@3 \
  positivePrompt="Extend the source photograph horizontally into a complete planetary-materials conservation laboratory for a wide science magazine opener. Preserve the conservator, meteorite, foam tray, workbench, pose, facial features, clothing, proportions, camera height, lens perspective, lighting direction, and documentary photographic style exactly as shown. Continue the stainless-steel bench naturally beyond both original edges. Reveal a meticulous working laboratory with matte gray cabinetry, a glass desiccator containing several small labeled-but-unreadable rock samples, precision calipers, a compact binocular microscope, archival specimen drawers, anti-static mats, pale storage boxes, and a wheeled instrument cart. Add a restrained glimpse of an amber-lit humidity chamber on the far left and neatly arranged mineral sample shelves on the far right. Match the source's cool fluorescent overhead light, subtle reflections, realistic shadows, moderate depth of field, and neutral color rendering; let the meteorite's oxidized rust and umber tones remain the visual accent. Keep the room credible, orderly, and actively used rather than futuristic or theatrical. Balanced editorial composition with generous uncluttered laboratory wall space around the central subject. Seamless photorealistic continuation with no visible borders, duplicated objects, warped furniture, added people, logos, captions, or on-image text." \
  outpaint.top=256 \
  outpaint.bottom=256 \
  outpaint.left=512 \
  outpaint.right=512 \
  providerSettings.bfl.promptUpsampling=true \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/dce387fa-cd2d-4f63-854d-0ef773174c2a.jpg
{
  "taskType": "imageInference",
  "taskUUID": "552eb39a-fa76-478b-b98a-edfaa4e8f319",
  "model": "bfl:1@3",
  "positivePrompt": "Extend the source photograph horizontally into a complete planetary-materials conservation laboratory for a wide science magazine opener. Preserve the conservator, meteorite, foam tray, workbench, pose, facial features, clothing, proportions, camera height, lens perspective, lighting direction, and documentary photographic style exactly as shown. Continue the stainless-steel bench naturally beyond both original edges. Reveal a meticulous working laboratory with matte gray cabinetry, a glass desiccator containing several small labeled-but-unreadable rock samples, precision calipers, a compact binocular microscope, archival specimen drawers, anti-static mats, pale storage boxes, and a wheeled instrument cart. Add a restrained glimpse of an amber-lit humidity chamber on the far left and neatly arranged mineral sample shelves on the far right. Match the source's cool fluorescent overhead light, subtle reflections, realistic shadows, moderate depth of field, and neutral color rendering; let the meteorite's oxidized rust and umber tones remain the visual accent. Keep the room credible, orderly, and actively used rather than futuristic or theatrical. Balanced editorial composition with generous uncluttered laboratory wall space around the central subject. Seamless photorealistic continuation with no visible borders, duplicated objects, warped furniture, added people, logos, captions, or on-image text.",
  "outpaint": {
    "top": 256,
    "bottom": 256,
    "left": 512,
    "right": 512
  },
  "providerSettings": {
    "bfl": {
      "promptUpsampling": true
    }
  },
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/dce387fa-cd2d-4f63-854d-0ef773174c2a.jpg"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "552eb39a-fa76-478b-b98a-edfaa4e8f319",
  "imageUUID": "ffa698ae-e1b1-4cad-8379-6709b80f737e",
  "imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/ffa698ae-e1b1-4cad-8379-6709b80f737e.jpg",
  "seed": 964348319,
  "cost": 0.05
}