imagineer

Convert and process images from the command line with filters and effects.

brewmacoslinux
Try with needOr install directly
Source

About

Image processing and conversion from the terminal

Commands

imagineer

Examples

resize image to specific width and height$ imagineer resize input.jpg 800x600 output.jpg
convert image format like jpg to png$ imagineer convert photo.jpg photo.png
reduce image file size and compress$ imagineer compress original.png -q 85 compressed.png
apply filters like blur or grayscale to image$ imagineer filter input.jpg -type blur -amount 5 output.jpg
batch process multiple images at once$ imagineer batch *.jpg -resize 400x400 -output resized/