Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,9 @@ rapidraw export /path/to/photos --output /path/to/output_dir --format jpeg --qua
# Export a single image directly to a specific target file
rapidraw export /path/to/photo.raw --output /path/to/output.png --format png

# Export a true 16-bit TIFF (the TIFF default; use 8 for an RGB8 TIFF)
rapidraw export /path/to/photo.raw --output /path/to/output.tiff --format tiff --tiff-bit-depth 16

# Batch export a folder using a custom adjustments JSON file to override sidecars
rapidraw export /path/to/photos --output /path/to/output_dir --adjustments /path/to/preset.json
```
Expand All @@ -763,6 +766,7 @@ rapidraw export /path/to/photos --output /path/to/output_dir --adjustments /path
| `--output <path>` | Target directory or specific output file path | _(Required)_ |
| `--format <fmt>` | Output format (`jpeg`, `png`, `webp`, `avif`, `tiff`, `jxl`, `cube`) | `jpeg` |
| `--quality <1-100>` | Image export quality | `90` |
| `--tiff-bit-depth <n>` | TIFF channel depth (`8` or `16`) | `16` |
| `--keep-metadata` | Retain EXIF/capture metadata in exported files | `false` |
| `--adjustments <path>` | Path to a custom JSON file containing adjustments to override sidecars | _(Auto-detected)_ |

Expand Down
Loading
Loading