Dream Prompter brings powerful AI models from Replicate directly into GIMP for intelligent image generation and editing. Choose from multiple advanced models including Flux 2 Pro, GPT Image 1.5, GPT Image 2, Imagen 4, Nano Banana, Nano Banana Pro, Qwen Image, Qwen Image Edit Plus, Seedream 4.5, and Stable Diffusion 3.5 Large Turbo.
- ๐จ AI Image Generation: Create new images from text descriptions
- โจ AI Image Editing: Transform existing images with natural language prompts
- ๐ค Multiple AI Models: Choose from Flux 2 Pro, GPT Image 1.5, GPT Image 2, Imagen 4, Nano Banana, Nano Banana Pro, Qwen Image, Qwen Image Edit Plus, Seedream 4.5, and Stable Diffusion 3.5 Large Turbo
- ๐ผ๏ธ Reference Images: Support for multiple reference images (varies by model)
- ๐ Smart Layer Management: Automatically creates properly named layers
- ๐ฏ Dual Operation Modes: Seamlessly switch between editing and generation
- ๐ Multi-Language Support: Full internationalization with 10+ languages
- ๐ Safe File Handling: Validates image formats and file sizes per model
- ๐๏ธ Native GIMP Integration: Works seamlessly within your GIMP workflow
- GIMP 3.0+
- Python 3.8+
- Replicate API key (paid account required)
Install the required Python library:
pip install replicate-
Download the latest release from GitHub Releases
-
Extract the release
This will create a folder named
dream-prompter-{version}(e.g.,dream-prompter-1.4.1) -
Move to your GIMP plugins folder with the correct name:
Rename and move the extracted folder to exactly
dream-prompterin your GIMP plugins directory:Note: In paths below, replace
<version>with your installed GIMP's major.minor version โ e.g.3.0or3.2. The plugin itself auto-detects the running GIMP version at runtime.
- Linux:
~/.config/GIMP/<version>/plug-ins/dream-prompter/(Snap:~/snap/gimp/current/GIMP/<version>/plug-ins/dream-prompter/) - Windows:
%APPDATA%\GIMP\<version>\plug-ins\dream-prompter\ - macOS:
~/Library/Application Support/GIMP/<version>/plug-ins/dream-prompter/
Example for Linux:
# Extract creates dream-prompter-1.4.1/
unzip dream-prompter-1.4.1.zip
# Move to correct location with correct name
# Replace ~/.config/GIMP with ~/snap/gimp/current/GIMP if you installed GIMP via Snap
mv dream-prompter-1.4.1 ~/.config/GIMP/<version>/plug-ins/dream-prompter-
Make executable (Linux/macOS only):
# Replace ~/.config/GIMP with ~/snap/gimp/current/GIMP if you installed GIMP via Snap chmod +x ~/.config/GIMP/<version>/plug-ins/dream-prompter/dream-prompter.py
-
Restart GIMP
Building translations (optional): If you need languages other than English, run python3 scripts/build-translations.py in the plugin directory after installation.
To install Dream Prompter on Arch Linux, you can install it from the AUR.
yay -S dream-prompter-
Find your GIMP plugins directory (paths listed above) If you installed GIMP via Snap, use
~/snap/gimp/current/GIMPas the base directory instead of~/.config/GIMP. -
Create plugin directory:
# Replace ~/.config/GIMP with ~/snap/gimp/current/GIMP if you installed GIMP via Snap mkdir -p ~/.config/GIMP/<version>/plug-ins/dream-prompter/
-
Copy all Python files and the models directory:
# Replace ~/.config/GIMP with ~/snap/gimp/current/GIMP if you installed GIMP via Snap cp *.py ~/.config/GIMP/<version>/plug-ins/dream-prompter/ cp -r models ~/.config/GIMP/<version>/plug-ins/dream-prompter/
-
Build and install translations (Optional):
python3 scripts/build-translations.py # Replace ~/.config/GIMP with ~/snap/gimp/current/GIMP if you installed GIMP via Snap cp -r locale ~/.config/GIMP/<version>/plug-ins/dream-prompter/
-
Make executable:
# Replace ~/.config/GIMP with ~/snap/gimp/current/GIMP if you installed GIMP via Snap chmod +x ~/.config/GIMP/<version>/plug-ins/dream-prompter/dream-prompter.py
Note: Your final directory structure should look like:
~/.config/GIMP/<version>/plug-ins/dream-prompter/
โโโ dream-prompter.py
โโโ api.py
โโโ dialog*.py
โโโ integrator.py
โโโ settings.py
โโโ i18n.py
โโโ models/
โ โโโ __init__.py
โ โโโ factory.py
โ โโโ flux_pro.py
โ โโโ gpt_image.py
โ โโโ gpt_image_2.py
โ โโโ imagen.py
โ โโโ nano_banana.py
โ โโโ nano_banana_pro.py
โ โโโ qwen_image.py
โ โโโ qwen_image_edit_plus.py
โ โโโ seedream.py
โ โโโ stable_diffusion_large_turbo.py
โโโ locale/ (optional)
โโโ ...
git clone https://github.com/zquestz/dream-prompter.git
cd dream-prompter
pip install replicate
python3 scripts/build-translations.py # optional, defaults to English
# Replace ~/.config/GIMP with ~/snap/gimp/current/GIMP if you installed GIMP via Snap
ln -s $(pwd) ~/.config/GIMP/<version>/plug-ins/dream-prompterImportant: Use the same Python that GIMP uses. If pip install replicate doesn't work:
# System-wide installation
sudo pip install replicate
# User installation (recommended)
pip install --user replicate
# Ensure Python 3
pip3 install replicateIf you get the "replicate not installed" error on macOS:
-
Locate GIMP's Python by opening the Python Console:
Filters โ Development โ Python-Fu -
Run this command in the console:
import sys; print(sys.executable)
You should see something like:
/Applications/GIMP.app/Contents/MacOS/python3 -
Install replicate using GIMP's Python from Terminal:
# Change to GIMP's Python directory cd /Applications/GIMP.app/Contents/MacOS # Ensure pip is installed ./python3 -m ensurepip # Install replicate ./python3 -m pip install replicate
If you get the "replicate not installed" error on Windows:
-
Locate GIMP's Python by opening the Python Console:
Filters โ Development โ Python-Fu -
Run this command in the console:
import sys; print(sys.executable)
You should see something like:
C:\Users\quest\AppData\Local\Programs\GIMP 3\bin\pythonw.exe -
Install replicate using GIMP's Python from Command Prompt or PowerShell:
# First make sure we can adjust the python installation cd C:\Users\quest\AppData\Local\Programs\"GIMP 3"\lib\python3.12\ mv EXTERNALLY-MANAGED EXTERNALLY-MANAGED.bak # Change to GIMP's bin directory cd C:\Users\quest\AppData\Local\Programs\"GIMP 3"\bin # Ensure pip is installed python.exe -m ensurepip # Install replicate python.exe -m pip install replicate --only-binary=:all:
Note: You may need to run Command Prompt or PowerShell as Administrator if you encounter permission errors.
- Visit Replicate
- Generate an API key
- Keep your key secure and monitor usage/costs
Flux 2 Pro (black-forest-labs/flux-2-pro) - High-quality image generation and editing model:
- Capabilities: Both generation and editing
- Reference Images: Up to 8 for generation, 7 for editing
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP, GIF
- Special Features: Excellent text rendering, photorealism, character consistency, up to 4MP resolution
- More Info: Replicate Model Page
GPT Image 1.5 (openai/gpt-image-1.5) - OpenAI's advanced image generation model:
- Capabilities: Generation only
- Reference Images: Up to 10 for generation
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP
- Special Features: Transparent backgrounds, quality control, input fidelity options
GPT Image 2 (openai/gpt-image-2) - OpenAI's next generation image generation model:
- Capabilities: Generation only
- Reference Images: Up to 10 for generation
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP
- Special Features: Quality control, dense text rendering, world-knowledge reasoning
Imagen 4 (google/imagen-4) - Google's advanced image generation model:
- Capabilities: Generation only
- Reference Images: Not supported
- File Size: Maximum 7MB per image
- Formats: PNG, JPEG
- Special Features: Advanced safety filtering, high-quality generation
Nano Banana (google/nano-banana) - Google's Gemini 2.5 Flash Image model for fast, conversational workflows:
- Capabilities: Both generation and editing
- Reference Images: Up to 10 for generation, 9 for editing
- File Size: Maximum 7MB per image
- Formats: PNG, JPEG, WebP
- Special Features: Character consistency, multi-image fusion, conversational editing, native image understanding
Nano Banana 2 (google/nano-banana-2) - Google's Gemini 3.1 Flash Image model:
- Capabilities: Both generation and editing
- Reference Images: Up to 14 for generation, 13 for editing
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP
- Special Features: Multiple resolutions (1K/2K/4K), extended aspect ratios (including 1:4, 4:1, 1:8, 8:1), Google Search and Image Search grounding, improved text rendering
Nano Banana Pro (google/nano-banana-pro) - Google's Gemini 3 Pro state of the art model:
- Capabilities: Both generation and editing
- Reference Images: Up to 14 for generation, 13 for editing
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP
- Special Features: 4K resolution, accurate text rendering, multi-image fusion, real-time Google Search integration
Qwen Image (qwen/qwen-image) - Qwen's advanced image generation model:
- Capabilities: Generation only
- Reference Images: Up to 1 for img2img
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP
- Special Features: Guidance control, prompt enhancement, LoRA support
Qwen Image Edit Plus (qwen/qwen-image-edit-plus) - Qwen's advanced image editing model:
- Capabilities: Editing only
- Reference Images: Up to 9 for editing
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP, GIF
- Special Features: Specialized for image editing and transformation
Seedream 4.5 (bytedance/seedream-4.5) - ByteDance's upgraded image model with stronger spatial understanding:
- Capabilities: Both generation and editing
- Reference Images: Up to 14 for generation, 13 for editing
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP
- Special Features: 4K resolution support, enhanced prompt option, improved spatial understanding and world knowledge
Stable Diffusion 3.5 Large Turbo (stability-ai/stable-diffusion-3.5-large-turbo) - Stability AI's high-resolution image generation model:
- Capabilities: Both generation and editing
- Reference Images: Up to 1 for generation, none for editing
- File Size: Maximum 10MB per image
- Formats: PNG, JPEG, WebP
- Special Features: High-resolution generation, fast inference, fewer steps required
- Each image generation/edit counts toward your API usage
- Monitor your usage at Replicate to avoid unexpected charges
- Open an image in GIMP (for editing) or create a new document (for generation)
- Launch Dream Prompter:
Filters โ AI โ Dream Prompter... - Enter your API key (saved automatically for future use)
- Choose your AI model: Select from available models in the dropdown
- Note: Available models will vary based on whether an image is open (edit-capable models) or not (generation-capable models)
- Select mode:
- Edit Mode: Transform the current layer (requires edit-capable model and open image)
- Generate Mode: Create a new image (requires generation-capable model)
- Write your prompt: Be descriptive and specific
- Add reference images (optional): Click "Select Images..." to add references
- Generate: Click the generate button and watch the progress
- Result: New layer appears with a descriptive name
For Generation:
- "A majestic dragon flying over snow-capped mountains at sunset"
- "Portrait of a woman in Victorian dress, oil painting style"
- "Cyberpunk cityscape with neon reflections on wet streets"
For Editing:
- "Change the background to a peaceful forest clearing"
- "Make this person wear a red Victorian dress"
- "Transform this into a watercolor painting style"
- "Add falling snow to this winter scene"
- Be specific: "Red sports car" vs "bright red Ferrari 488 GTB"
- Include style: "photorealistic", "oil painting", "digital art"
- Describe lighting: "golden hour", "dramatic shadows", "soft natural light"
- Use reference images to guide style and composition
- Keep files under 7MB for reference images
Dream Prompter is fully translated and available in:
- ๐บ๐ธ English (default)
- ๐ช๐ธ Spanish (complete)
- ๐ซ๐ท French (complete)
- ๐ต๐น Portuguese (complete)
- ๐ท๐บ Russian (complete)
- ๐ฏ๐ต Japanese (complete)
- ๐ฎ๐ณ Hindi (complete)
- ๐ง๐ฉ Bengali (complete)
- ๐จ๐ณ Chinese (Simplified) (complete)
- ๐น๐ผ Chinese (Traditional) (complete)
- ๐ฐ๐ท Korean (complete)
The plugin automatically detects your system language and uses the appropriate translation. If your language isn't available, it defaults to English.
# Extract new translatable strings
python3 scripts/update-pot.py
# Update existing translations
python3 scripts/update-translations.py
# Build compiled translations
python3 scripts/build-translations.pyThe plugin is organized into focused modules with a clean model-driven architecture:
dream-prompter.py- Main GIMP plugin entry pointdialog_gtk.py- GTK user interface componentsdialog_events.py- Event handling and user interactionsdialog_threads.py- Background processing and threadingapi.py- Replicate API integrationintegrator.py- GIMP-specific operationssettings.py- Configuration persistencei18n.py- Internationalization support
models/__init__.py- Base model classes and registry systemmodels/factory.py- Model factory for centralized model managementmodels/flux_pro.py- Flux 2 Pro model implementationmodels/gpt_image.py- GPT Image 1.5 model implementationmodels/gpt_image_2.py- GPT Image 2 model implementationmodels/imagen.py- Imagen 4 model implementationmodels/nano_banana.py- Nano Banana model implementationmodels/nano_banana_pro.py- Nano Banana Pro model implementationmodels/qwen_image.py- Qwen Image model implementationmodels/qwen_image_edit_plus.py- Qwen Image Edit Plus model implementationmodels/seedream.py- Seedream 4.5 model implementationmodels/stable_diffusion_large_turbo.py- Stable Diffusion 3.5 Large Turbo model implementation
The model system provides a clean abstraction for AI models, making it easy to:
- Add new models by implementing the
BaseModelinterface - Validate inputs using model-specific limits and constraints
- Build API requests with model-specific parameter formats
- Maintain consistency across the entire plugin
To add support for a new Replicate model:
- Create a new model file in the
models/directory (e.g.,models/my_model.py) - Implement the BaseModel interface:
from . import BaseModel, OutputFormat, register_model
class MyModel(BaseModel):
@property
def name(self) -> str:
return "my-account/my-model"
@property
def display_name(self) -> str:
return "My Custom Model"
# Implement other required properties...
def build_generation_input(self, prompt, reference_images=None, **kwargs):
# Implementation for generating...
pass
def build_edit_input(self, prompt, main_image, reference_images=None, **kwargs):
# Implementation for editing...
pass
# Register the model
my_model = MyModel()
register_model(my_model)- Import the model in
models/factory.pyto ensure it's loaded - The model is now available throughout the plugin with automatic validation and UI updates
The nano_banana.py file serves as a complete reference implementation.
"replicate not installed" warning
- Install with:
pip install replicate - Ensure you're using GIMP's Python environment
Plugin doesn't appear in menu
- Check file permissions:
chmod +x dream-prompter.py - Restart GIMP after installation
- Verify files are in correct plugins directory
API errors
- Verify your API key is correct
- Check your quota at Replicate
- Monitor costs to avoid unexpected charges
Interface problems
- Check GIMP's Error Console:
Windows โ Dockable Dialogs โ Error Console - Ensure translations are built:
python3 scripts/build-translations.py - Report UI issues with screenshots
Model or mode not available
- Edit mode disabled: Some models (like Imagen 4) only support generation - select a different model or use Generate mode
- Model missing from dropdown: Models are filtered based on context - edit-only models won't appear when no image is open
- Generate mode disabled: Some models (like Qwen Image Edit Plus) only support editing - open an image first or select a different model
- Check the Error Console in GIMP for specific error messages
- Verify all requirements are installed correctly
- Test with simple prompts first
- Check file permissions on the plugin directory
- Review API quotas if getting timeout errors
We welcome translations! Here's how to contribute:
- Copy the template:
cp locale/dream-prompter.pot locale/[YOUR_LANG].po - Translate the strings using Poedit, Lokalize, or any text editor
- Test your translation: Build with
python3 scripts/build-translations.py - Submit a pull request with your
.pofile
Translation Guidelines:
- Keep UI text concise but clear
- Use GIMP's existing terminology for your language
- Preserve HTML tags and placeholders like
{count},{url} - Test that text fits in the interface
- Fork the repository
- Create a feature branch
- Follow the existing code style
- Update translations if adding new strings
- Submit a pull request
This project is licensed under the MIT License - see the LICENSE file for details.
Built with Replicate's API providing access to multiple advanced AI models including Black Forest Labs' Flux 2 Pro, OpenAI's GPT Image 1.5, OpenAI's GPT Image 2, Google's Imagen 4, Google's Nano Banana, Google's Nano Banana Pro, Qwen's Image, Qwen's Image Edit Plus, ByteDance's Seedream 4.5, and Stability AI's Stable Diffusion 3.5 Large Turbo.
