Simple and fast command-line image manipulator written in C
imager filename [options]
Argument:
Your image file (PNG, JPEG/JPG (JFIF) supported)
Options:
-?, -h, --help Shows help message
-cp, --copy Copy image
-mv, --move Move image
-cr, --crop Crop image (Only PNG)
-crp, --crop-percent Crop image with percent (Only PNG)
-i, --info Shows information about image
imager image.png --copy copy_image.png
imager image.jpg -cp copy_image.jpg
imager image.jpeg -cp
imager image.png -mv path/where/to/move
imager image.jpeg --move image_with_new_name.jpeg
By width and height
imager image.png -cr 640 380
By percent
imager image.png -crp 50%
- Read image files ✔️
- Command-line user interface ✔️
- Copy ✔️
- Move/Rename ✔️
- Properties (info) ✔️
- Resize ❌
- Crop ✔️
git clone https://github.com/C0DIC/Imager.git
cd Imager
make
make clean