How to install Imagemagick on Mac
Use brew to get information on latest imagemagick version $ brew info imagemagick imagemagick: stable 6.9.2-8 (bottled), HEAD Tools and libraries to manipulate images in read more
How to install Imagemagick on Ubuntu Linux
Use apt-get to install imagemagick $ sudo apt-get install imagemagick List binaries in imagemagick $ dpkg -L imagemagick | grep bin /usr/bin /usr/bin/conjure.im6 /usr/bin/composite.im6 /usr/bin/import.im6 read more
How to create animated gif using Mac preview
Mac preview can be used to create simple animated gif by taking multiple screenshots of a window and then stitching then together in Mac preview read more
Imagemagick – how to create animation on command line
Imagemagick is very powerful tool to process images on command line. If you have multiple images, you can use imagemagick convert utility on Mac or read more
How to edit animated gif speed (FPS) using imagemagick convert
Imagemagick convert can be used to edit animated gif speed (FPS). Here are some scenarios where convert can be used. For these commands to work read more
Get image width and ppi using imagemagick identify on command line
Imagemagick identify is pretty handy utility to get information about an image. You need to have imagemagick installed on your Mac or Linux for the read more
Find image unique colors and bit depth using imagemagick identify
Print image unique colors and bit depth $ identify -format “UniqueColors: %k, BitDepth:%q\n” img1.png UniqueColors: 1694, BitDepth:16 Note that when can compress an image with read more
How to resize image (including animated gif) using Image magick convert
Imagemagick convert can be used to resize and image (including animated gif). Here are some scenarios where convert can be used to change size of read more
How to compress screenshot images using imagemagick convert
Imagemagick convert can be used to compress and screenshot images by changing unique colors, image depth etc. Here are some ways to compress images created read more
How to crop an image using imagemagick convert
Imagemagick convert is pretty handy tool to manipulate images and can be used to crop an image. This can be useful in automation and also read more