imagemagick@6

Convert, resize, and manipulate images in many formats.

brewmacoslinux
Try with needOr install directly
Source

About

Tools and libraries to manipulate images in many formats

Commands

convertidentifycompositemogrifydisplayimport

Examples

convert image between different file formats$ convert input.png output.jpg
resize image to specific width and height$ convert input.jpg -resize 800x600 output.jpg
reduce image file size and compress$ convert input.jpg -quality 85 -strip output.jpg
get image dimensions and file information$ identify input.jpg
combine two images side by side$ convert image1.jpg image2.jpg +append combined.jpg