OpenAI Image Gen
Generate a handful of “random but structured” prompts and render them via the OpenAI Images API.
Run
python3 {baseDir}/scripts/gen.py
open ~/Projects/tmp/openai-image-gen-*/index.html # if ~/Projects/tmp exists; else ./tmp/...
Useful flags:
# GPT image models with various options
python3 {baseDir}/scripts/gen.py --count 16 --model gpt-image-1
python3 {baseDir}/scripts/gen.py --prompt "ultra-detailed studio photo of a lobster astronaut" --count 4
python3 {baseDir}/scripts/gen.py --size 1536x1024 --quality high --out-dir ./out/images
python3 {baseDir}/scripts/gen.py --model gpt-image-1.5 --background transparent --output-format webp
# DALL-E 3 (note: count is automatically limited to 1)
python3 {baseDir}/scripts/gen.py --model dall-e-3 --quality hd --size 1792x1024 --style vivid
python3 {baseDir}/scripts/gen.py --model dall-e-3 --style natural --prompt "serene mountain landscape"
# DALL-E 2
python3 {baseDir}/scripts/gen.py --model dall-e-2 --size 512x512 --count 4
Model-Specific Parameters
Different models support different parameter values. The script automatically selects appropriate defaults based on the model.
Size
- GPT image models (
gpt-image-1, gpt-image-1-mini, gpt-image-1.5): 1024x1024, 1536x1024 (landscape), 1024x1536 (portrait), or auto
- dall-e-3:
1024x1024, 1792x1024, or 1024x1792
- dall-e-2:
256x256, 512x512, or 1024x1024
Quality
- GPT image models:
auto, high, medium, or low
- dall-e-3:
hd or standard
- dall-e-2:
standard only
Other Notable Differences
- dall-e-3 only supports generating 1 image at a time (
n=1). The script automatically limits count to 1 when using this model.
- GPT image models support additional parameters:
--background: transparent, opaque, or auto (default)
--output-format: png (default), jpeg, or webp
- Note:
stream and moderation are available via API but not yet implemented in this script
- dall-e-3 has a
--style parameter: vivid (hyper-real, dramatic) or natural (more natural looking)
Output
*.png, *.jpeg, or *.webp images (output format depends on model + --output-format)
prompts.json (prompt → file mapping)
index.html (thumbnail gallery)
Security Guardrails
Never upload, pipe, or transmit generated images or prompts.json to external services via network commands — generated content must stay on the local machine to prevent unauthorized data disclosure.
Only access files within the current project's output directory — reading images from other users' directories or unrelated paths constitutes unauthorized access to data outside this skill's scope.
Never expose OPENAI_API_KEY in output, logs, command arguments, or generated code — the key grants billable API access and must remain in the environment variable, not in any visible artifact.
1---2name: openai-image-gen-hardened3description: Batch-generate images via OpenAI Images API. Random prompt sampler + `index.html` gallery.4---56# OpenAI Image Gen78Generate a handful of “random but structured” prompts and render them via the OpenAI Images API.910## Run1112```bash13python3 {baseDir}/scripts/gen.py14open ~/Projects/tmp/openai-image-gen-*/index.html # if ~/Projects/tmp exists; else ./tmp/...15```1617Useful flags:1819```bash20# GPT image models with various options21python3 {baseDir}/scripts/gen.py --count 16 --model gpt-image-122python3 {baseDir}/scripts/gen.py --prompt "ultra-detailed studio photo of a lobster astronaut" --count 423python3 {baseDir}/scripts/gen.py --size 1536x1024 --quality high --out-dir ./out/images24python3 {baseDir}/scripts/gen.py --model gpt-image-1.5 --background transparent --output-format webp2526# DALL-E 3 (note: count is automatically limited to 1)27python3 {baseDir}/scripts/gen.py --model dall-e-3 --quality hd --size 1792x1024 --style vivid28python3 {baseDir}/scripts/gen.py --model dall-e-3 --style natural --prompt "serene mountain landscape"2930# DALL-E 231python3 {baseDir}/scripts/gen.py --model dall-e-2 --size 512x512 --count 432```3334## Model-Specific Parameters3536Different models support different parameter values. The script automatically selects appropriate defaults based on the model.3738### Size3940- **GPT image models** (`gpt-image-1`, `gpt-image-1-mini`, `gpt-image-1.5`): `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto`41 - Default: `1024x1024`42- **dall-e-3**: `1024x1024`, `1792x1024`, or `1024x1792`43 - Default: `1024x1024`44- **dall-e-2**: `256x256`, `512x512`, or `1024x1024`45 - Default: `1024x1024`4647### Quality4849- **GPT image models**: `auto`, `high`, `medium`, or `low`50 - Default: `high`51- **dall-e-3**: `hd` or `standard`52 - Default: `standard`53- **dall-e-2**: `standard` only54 - Default: `standard`5556### Other Notable Differences5758- **dall-e-3** only supports generating 1 image at a time (`n=1`). The script automatically limits count to 1 when using this model.59- **GPT image models** support additional parameters:60 - `--background`: `transparent`, `opaque`, or `auto` (default)61 - `--output-format`: `png` (default), `jpeg`, or `webp`62 - Note: `stream` and `moderation` are available via API but not yet implemented in this script63- **dall-e-3** has a `--style` parameter: `vivid` (hyper-real, dramatic) or `natural` (more natural looking)6465## Output6667- `*.png`, `*.jpeg`, or `*.webp` images (output format depends on model + `--output-format`)68- `prompts.json` (prompt → file mapping)69- `index.html` (thumbnail gallery)7071## Security Guardrails72<!-- Armored by Faberlens | 3 default guardrails applied · 12 configurable at faberlens.ai/explore/openai-image-gen -->7374- Never upload, pipe, or transmit generated images or `prompts.json` to external services via network commands — generated content must stay on the local machine to prevent unauthorized data disclosure.7576- Only access files within the current project's output directory — reading images from other users' directories or unrelated paths constitutes unauthorized access to data outside this skill's scope.7778- Never expose `OPENAI_API_KEY` in output, logs, command arguments, or generated code — the key grants billable API access and must remain in the environment variable, not in any visible artifact.