#comic-img-compress **#** About A simple command line interface to change .cbr and .cbz comic files with png or jpeg images to webp, improving compression markedly The tool is able to convert also single jpg or png images to webp # Setup This project uses [libwebp-net](https://github.com/imazen/libwebp-net), in order to use download the libwebp.dll from [here](https://s3.amazonaws.com/resizer-dynamic-downloads/webp/0.5.2/x86_64/libwebp.dll) and add to the project root # Running Run `dotnet run -- [args]` `dotnet run -- --help` for help ``` -i|--input The file or folder to convert -o|--output Base path of the output (will be in output/subfolders if the recursive option is enabled), default: converted_comics -r|--recursive Recursively traverse the input folder (include all subfolders) -s|--skip Skip processing file if it already exists in the output folder -q|--quality Quality to use for the webp files (default: 75) -p|--parallel Run in parallel, utilizing all computing resources -?|-h|--help Show help information ``` # Building Run `dotnet publish -r win-x64 -c Release`