Go to file
Matteo Paonessa 9c00af9cd2 Merge pull request #16 from Lymphatus/libcaesium-with-cmake
Exit on error
2017-03-13 02:13:24 -07:00
src Exit on error 2017-03-13 10:13:03 +01:00
.gitignore Updated .ignore 2017-03-10 11:52:13 +01:00
.travis.yml Testing Travis 2017-03-10 18:48:56 +01:00
AUTHORS Changes package structure to reflect the common one 2015-05-14 17:37:36 +02:00
CMakeLists.txt All features available 2017-03-10 11:46:41 +01:00
COPYING Changes package structure to reflect the common one 2015-05-14 17:37:36 +02:00
INSTALL Exit on error 2017-03-13 10:13:03 +01:00
README.md Exit on error 2017-03-13 10:13:03 +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 Sierra (v10.12.3)
  • Ubuntu 16.04
  • Windows 10

COMPILATION

See INSTALL 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

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.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

Check the Commits for a detailed list of changes.


RESOURCES