Go to file
Matteo Paonessa 12f485cf0e Styling improvements and license 2018-01-01 17:17:33 +01:00
.idea / bugfix 2017-12-29 23:18:20 +01:00
src Styling improvements and license 2018-01-01 17:17:33 +01:00
.gitignore Fixing paths 2017-11-12 12:29:10 +01:00
.travis.yml Testing Travis 2017-03-10 18:48:56 +01:00
CMakeLists.txt Resizimg draft 2018-01-01 11:53:38 +01:00
INSTALL.md Styling improvements and license 2018-01-01 17:17:33 +01:00
LICENSE.md Styling improvements and license 2018-01-01 17:17:33 +01:00
README.md Styling improvements and license 2018-01-01 17:17:33 +01:00
install.sh Testing Travis 2017-03-10 18:48:56 +01:00

README.md

Caesium CommandLineTools

Build Status

REQUIREMENTS
Included libraries

TESTED PLATFORMS
  • Mac OS X High Sierra (v10.13.1)
  • Ubuntu 16.04
  • Windows 10

COMPILATION

See INSTALL.md for more details.


USAGE EXAMPLES

Losslessly compress image1.jpg, located in the home directory, into a folder called output

$ caesiumclt -q 0 -o ~/output/ ~/image.jpg

Compress image1.jpg, located in the home directory, into a folder called output with lossy compression and quality set to 80

$ caesiumclt -q 80 -o ~/output/ ~/image.jpg

Compress image1.jpg, located in the home directory, into a folder called output with lossy compression, quality set to 80 and resize it to half

$ caesiumclt -q 80 -s 0.5 -o ~/output/ ~/image.jpg

Losslessly compress image1.jpg, located in the home directory, into a folder called output and keeps EXIF metadata

$ caesiumclt -q 0 -e -o ~/output/ ~/image.jpg

Losslessly compress Pictures folder and subfolders, located in the home directory, into a folder called output

$ caesiumclt -q 0 -R -o ~/output/ ~/Pictures

Losslessly compress Pictures folder and subfolders, located in the home directory, into a folder called output retaining the input folder structure

$ caesiumclt -q 0 -RS -o ~/output/ ~/Pictures

TODO
  • Code cleaning
  • Deeper error handling

CHANGELOG
  • 0.12.0-beta - Resizing (experimental)
  • 0.11.0-beta - Fixing paths issues and dry-run option
  • 0.10.2-beta - Bugfixes & full Windows support
  • 0.10.1-beta - All features are available
  • 0.10.0-beta - Switched to cmake build system and libcaesium
  • 0.9.1-beta - Initial development stage

RESOURCES