14.04 doesnt have package imagemagick

The package you are looking for is imagemagick. Confirm that you have all sources check marked in "Software and Updates":

software and updates package sources

and then update the package list by opening a terminal(Ctrl+Alt+t) and then typing the following:

sudo apt-get update

and enter you password and then

sudo apt-get install imagemagick php5-imagick

and then press Return to confirm the installation.


In Ubuntu 14.04, imagemagick is available on main repository & php5-imagick is available on universe repository. So follow command in terminal:

sudo add-apt-repository main
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install imagemagick php5-imagick

this did the trick for me...

sudo apt-get install php5-imagick
sudo service apache2 reload