Quickly sort images into directories by orientation: landscape, portrait, and square.
Supported filetypes: - jpg - png - gif - webp - ico - tiff - bmp
This small tool's first release includes only the basic functionality: move images to direcotires named after their orientations.
$ tree /path/to/images
/path/to/images
├── foo
│ └── square.jpg
├── tall.jpg
└── wide.jpg
$ imgorisort -r /path/to/images
$ tree /path/to/images
/path/to/images
├── foo
├── landscape
│ └── wide.jpg
├── portrait
│ └── tall.jpg
└── square
└── square.jpg
``` imgorisort 0.1.2 Image Orientation Sorter
USAGE:
imgorisort [FLAGS]
FLAGS: -h, --help Prints help information -q, --quiet Do not print anything to stdout or stderr. -r, --recursive Recurse into subdirectories. -V, --version Prints version information -v, --verbose Increase output verbosity by adding more flags: [-v|-vv|-vvv]
ARGS: