mirror of
https://github.com/leejet/stable-diffusion.cpp.git
synced 2026-06-17 03:37:20 +00:00
17 lines
409 B
Markdown
17 lines
409 B
Markdown
# Usage
|
|
|
|
For detailed command-line arguments, run:
|
|
|
|
```bash
|
|
./bin/sd-cli -h
|
|
```
|
|
|
|
Metadata mode inspects PNG/JPEG container metadata without loading any model:
|
|
|
|
```bash
|
|
./bin/sd-cli -M metadata --image ./output.png
|
|
./bin/sd-cli -M metadata --image ./output.jpg --metadata-format json
|
|
./bin/sd-cli -M metadata --image ./output.png --metadata-raw
|
|
./bin/sd-cli -M metadata --image ./output.png --metadata-all
|
|
```
|