diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-22 08:29:14 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-22 08:29:14 +0300 |
| commit | 15639ba3508ab92599bd1884ba07139c73b2dac0 (patch) | |
| tree | 7b6bfaaf8b76827307c62ae5fa461f7920d08140 /README.md | |
| parent | af21fec32c7cf3c15879dba6646a0b5cf19ac583 (diff) | |
Add manual prompt image mode
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -8,6 +8,8 @@ ComicForge turns a vocabulary file into a generated comic package. It uses Gemin ComicForge reads a vocabulary list, generates a story from those words, renders comic pages, and saves supporting files alongside the comic. By default it uses Gemini for text, image, and text-to-speech generation. +It also supports a manual prompt mode for generating a single image directly from a prompt, without the vocabulary/story pipeline. + Generated output includes: - story text in `comics/assets/<slug>/` @@ -115,6 +117,7 @@ Vocabulary lines can be: Useful flags: - `--output` sets the root output directory +- `--prompt` generates a single image from a direct prompt and skips the story flow - `--prompts-dir` overrides the prompt template directory - `--style` and `--theme` override story generation hints - `--slug` forces the output folder name @@ -137,3 +140,11 @@ comicforge \ ``` The generated files are written under `out/comics/assets/demo-comic/`, with the gallery copied to `out/comics/gallery/` and the PDF written to `out/comics/PDF/`. + +For manual prompt mode: + +```bash +comicforge --prompt "a robot reading a newspaper" --output out --slug manual-robot +``` + +This writes a single image to `out/comics/assets/manual-robot/prompt.png`. |
