Image GenerationActive
GPT Image 2.5 Flare Image Generator
Generate and edit images with GPT Image 2.5 Flare from OpenAI. Use reference images, optional masks, size controls, and PNG/JPEG/WEBP outputs.
Text to ImageImage to ImageImage Editing
Model ID
gpt-image-2.5-flare
Provider
openai
Updated
1789043843
wiro playground—openai/gpt-image-2.5-flare
Updated 1789043843
Overview
GPT Image 2.5 Flare by OpenAI creates images from a written description and can also edit existing images. You can provide up to 16 reference images to guide the result or to make targeted edits. For precise edits, you can add a mask so the model changes only the marked area. The output is production-ready image files you can use in design, product, and content workflows.
What you can build
- Product photos on clean backgrounds, including transparent-background assets
- Marketing creatives like banners, flyers, and social posts with readable text
- UI mockups, dashboards, and app store screenshots
- Infographics and dense layouts that need legible labels
- Object removal, object replacement, and background changes for photos
- Relighting and color grading while keeping subject identity consistent
- Style transfer and consistent art direction across a set of images
- Edits that preserve composition, while changing only requested elements
Inputs
- A required written instruction that describes the image you want, or the exact edit you want to apply.
- Optional input images to edit or to use as visual references. You can upload up to 16 images.
- An optional mask image for edit workflows. The mask must match the edited image’s size and file format, be under 50 MB, and include an alpha channel.
- Your chosen output size. You can pick a preset aspect ratio, or request a custom width and height. Custom dimensions must use multiples of 16 pixels, keep the aspect ratio between 1:3 and 3:1, and stay within a 3840-pixel maximum edge.
- A quality level that trades off speed, detail, and token usage. It supports low, medium, high, extra-high, max, and an auto mode.
- The number of output images to generate in one run (up to 10).
- An output file format choice: PNG, JPEG, or WebP.
- Optional compression control for JPEG or WebP outputs, from 0 to 100.
- An optional background setting: automatic, opaque, or transparent. Transparent background requires PNG or WebP output.
- An optional moderation strictness setting. Auto applies standard filtering, and low is less restrictive.
Outputs
- One or more generated images in the selected format (PNG, JPEG, or WebP).
- Each image result includes the pixel width and height, the image MIME type, and a downloadable file location.
- When you choose a transparent background, the returned image includes transparency data (PNG or WebP only).
Recommended settings
- Start with the recommended sizes for most work: 1024×1024 (square), 1536×1024 (landscape), or 1024×1536 (portrait).
- Use the auto options for size, quality, and background when you want the model to choose sensible defaults.
- Use low quality for quick drafts, then compare higher quality levels for final assets.
- For transparent backgrounds, set background to transparent and export as PNG or WebP.
- Use JPEG or WebP compression when file size matters. Keep PNG when you need lossless edges or clean text.
- Treat very large outputs as experimental when you go above 2560×1440.
Limitations
- The model can still miss exact text placement or perfect text clarity in complex layouts.
- It can drift on recurring characters or brand details across separate generations.
- It may struggle with pixel-perfect placement in rigid, layout-sensitive designs.
- Low-quality inputs reduce edit reliability. Blurry images, heavy JPEG artifacts, and low-resolution sources can cause unwanted changes.
- Masked edits require careful masks. Masks without a proper alpha channel, or masks that don’t match the image size, can fail.
- Very large sizes and high pixel counts can be less consistent than standard sizes.
Safety & compliance
- Prompts and generated images are filtered under OpenAI’s content policy.
- Use standard moderation for end-user apps, and only relax filtering when you have a clear policy reason.
- OpenAI applies provenance signals to generated images, including C2PA metadata and invisible watermarking when supported.
Example prompts
Great starting points for gpt-image-2.5-flare.
Turn the same scene into peak summer at golden hour: wildflowers in magenta, yellow and violet across the meadow, lush green foliage on the trees, warm low sunlight glinting on the stream, deep blue sky with a few bright clouds, keep the mountain, stream path and composition unchangedImage Generation
Make it the same street at night in the rain: wet asphalt reflecting neon shop signs in pink and cyan, glowing warm windows, people with umbrellas, headlight streaks from passing cars, keep the buildings, street layout and camera angle identicalImage Generation
Put him mid-dunk in a packed indoor arena: body stretched toward the rim, ball in his raised hand, bright overhead spotlights, blurred cheering crowd and glowing scoreboard behind him, sweat and motion in the fabric, keep his face and jersey the sameImage Generation
Change the headline to 'AFTERNOON POUR' in the same typeface and weight, swap the espresso cup for a tall iced latte glass with condensation, shift the palette to sage green and terracotta, keep the layout and margins identicalImage Generation
API quick start
Run gpt-image-2.5-flare with a single API call.
POST https://api.wiro.ai/v1/Run/openai/gpt-image-2-5-flare
{
"prompt": "Change the headline to 'AFTERNOON POUR' i…",
"resolution": "1k",
"ratio": "1:1",
"quality": "low"
}curl
curl -X POST "https://api.wiro.ai/v1/Run/openai/gpt-image-2-5-flare" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_WIRO_API_KEY" \
--data-binary @- <<'JSON'
{
"prompt": "Change the headline to 'AFTERNOON POUR' i…",
"resolution": "1k",
"ratio": "1:1",
"quality": "low"
}
JSON