Image manipulation tool to split images into tiles.
Inspired by: pnytko/splitter
python3
pillow
If you want to split the image into Squares.
python splitter.py --path {path_to_photo} --t_size 16 --out {output_path}
If you want to split the image into Rectangles.
python splitter.py --path {path_to_photo} --t_size 16x8 --out {output_path}
You can also provide a path to a folder with multiple photos and all files will be processed.
python splitter.py --path {path_to_folder_with_photos} --t_size 16x8 --out {output_path}