Path does not exist

$ cruncher -i C:\Projects\Image Dir\image.png -S 1000 600

Error: Invalid value for "-i" / "--file": Path "C:\Projects\Image" does not exist.

This error is cause because there is a blank space in the path to correct this wrap the path in double quotes.

$ cruncher -i "C:\Projects\Image Dir\image.png" -S 1000 600

This applies to --directory, --image, --output, and --config options.