Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grauho/sdpromptdumper
A command line tool to convert stable-diffusion.cpp generated image metadata back into a valid stable-diffusion.cpp invocation.
https://github.com/grauho/sdpromptdumper
ansi-c c c89 c90 c99 civitai cli metadata png stable-diffusion stablediffusion
Last synced: about 1 month ago
JSON representation
A command line tool to convert stable-diffusion.cpp generated image metadata back into a valid stable-diffusion.cpp invocation.
- Host: GitHub
- URL: https://github.com/grauho/sdpromptdumper
- Owner: grauho
- License: bsd-4-clause
- Created: 2024-03-28T20:18:57.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-04-10T20:23:10.000Z (7 months ago)
- Last Synced: 2024-09-30T01:20:19.971Z (about 1 month ago)
- Topics: ansi-c, c, c89, c90, c99, civitai, cli, metadata, png, stable-diffusion, stablediffusion
- Language: C
- Homepage:
- Size: 30.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# sdPromptDumper, stable-diffusion.cpp Prompt Dumper
This program is a simple tool to take the metadata information that is
encoded into images produced by stable-diffusion.cpp and use it to construct
a valid stable-diffusion.cpp invocation. Naturally due to the limitations of
the information encoded this merely produces the closest invocation that it
can get with the information provided.I made this tool because I often want to go back to previously generated images
and experiment with tweaking various settings but it was annoying to copy and
paste each option from a PNG metadata inspector program. This way the user just
has to run a single program and copy and paste a single command that they
have the option of editing beforehand.I considered just writing this in Perl but figured access to a working C99
compiler was a lower bar to clear than having a Perl interpreter,
especially those on platforms where Perl is not immediately available. Plus,
this was a fun excuse to write a little non-destructive tokenizer and dig into
the PNG specification a little bit.Tested and works on images produced by the following programs:
* [stable-diffusion.cpp] (https://github.com/leejet/stable-diffusion.cpp)
* civitai.com (mostly)## Building
This program has no external dependencies beyond the C standard library. It
requires at least a C99 compliant compiler due to its inclusion of stdint. The
adventurous can provide an alternative header with definitions for those
specific bit-width types should they wish to compile it with a C90 compiler.A Makefile is provided for those with access to POSIX make, the program can be
built as follows:``` shell
make
```Otherwise, it should suffice to simply build the object files and link them
together manually:``` shell
cc -Wall -pedantic -O2 -c -o main.o main.c
cc -Wall -pedantic -O2 -c -o stiTokenizer.o stiTokenizer.c
cc -Wall -pedantic -O2 -c -o pngProcessing.o pngProcessing.c
cc -Wall -pedantic -O2 -c -o loadConfig.o loadConfig.c
cc -Wall -pedantic -O2 -o sdPromptDump main.o stiTokenizer.o pngProcessing.o loadConfig.o
```Notes:
* PNG files contain values encoded using Big-Endian byte order, this program
addresses this already for those on little-endian systems. If for whatever
reason all PNG files are failing to process try running the program with the -e
switch and checking that the result agrees with the system byte order. See the
information below for more information.## Command Line Options
-M, --model : Prepends this path to the encoded model name
-L, --lora : Passes this path directly to --lora-model-dir
-B, --bin : Prepends this path to the sd executable
-E, --exe : Alternative name for the sd executable
-V, --vae : Passes this file path directly to --vae
-c, --config : Path to alternative config file directory
-a, --abrv : Uses abreviated switch names in the output
-e, --endian : Prints assumed endian form and exits
-h, --help : Prints a help message much like this oneNotes:
* By default no path is prepended to "sd" in the result unless set with -B,
this is to accommodate those who have it installed somewhere like
/usr/local/bin. Default arguments for --model, --lora, --vae, --bin, --exe, and
--abrv may be set by providing a configuration file, sdPromptDumper.cfg, in
the appropriate directory. ie:POSIX: $HOME/.config/sdPromptDumper/sdPromptDumper.cfg
WINDOWS: %HOMEPATH%\AppData\Local\sdPromptDumper\sdPromptDumper.cfg
* Users should create the configuration directory themselves. An alternative
configuration path may be supplied with the -c, --config switch. An example
config file is included in this repo, exampleConfig.cfg, This has only been
tested on Linux.* Should the endian switch suggest a different byte order than what is known
to be the system order the behavior can be forced by defining either
PORTEGG\_LITTLE\_ENDIAN\_SYSTEM or PORTEGG\_BIG\_ENDIAN\_SYSTEM either using
a compiler switch or simply before portegg.h is included in the main.h header.* This program was written to work with images produced using txt2img and lacks
handling for other modes or more advanced workflows that don't have their
information encoded into the resulting output image. It should also go without
saying that this program will only work with programs generated using
stable-diffusion.cpp or ones using the same metadata encoding style that have
not had their metadata stripped.## Example Invocation
``` shell
./sdPromptDumper --model ~/.sd/models/ --vae myVAE.safetensors foo.png bar.png
```## Bugs
* Please report any bugs or issues to the associated github issues page for
this repository.## License
License information can be found in the LICENSE.txt file in this repository.