ImageMagick installing and exploring it, a good alternative for the GD library
Although PHP GD library handles basic image operations quite good, you have probably run into the limitations of GD library as well, it is often slow, memory intensive and a bit complicated to use for advanced image effects. ImageMagick however is a very good alternative. It is an opensource software suite licensed under a BSD style license from IM itself. ImageMagick provides in all functionality that can be accomplished with the GD library but even goes a step further with support for more advanced image edit techniques. An example of such a technique is the recently added “liquid scaling” feature, this is a content aware scaling option.
Click the image below to see an example of liquid scaling:
So how do I get such a result? Well with PHP GD library it would take a whole lot of code, thinking and beers to get a script that does the same without exceeding your memory_limit, with ImageMagick however it is just one simple command.
exec("convert inputimage.jpg -liquid-rescale 250x500%\! outputimage.jpg");
The nice thing about ImageMagick is that you can often accomplish very sophisticated image effects with just one command, you can also chain commands. Now although IM has a quite good documentation guide available you maybe just want to be able to perform basic image operations with IM without seeking your way trough the documentation all the time. Their are some PHP classes available that will make your life easier.
- PhMagick is a simple wrapper class and provides a set of methods to perform the mostly used image operations
- MagickWand is a PHP extension that allows to communicate with the IM api
- Imagick is also an extension
My personal favor is PhMagick or a home brew script, why? Well I like the idea of wrapper classes more, my code is somewhat more portable because I don’t have to install the IM extension on a server and another PHP extension to communicate with it, furthermore I think that using wrapper classes gives you more insight in IM itself, you will better understand what is going on, on the other hand you probably will spend some hours to figure out why the command is not doing what you expected it to do because you are missing a simple ! or ^ parameter option.
Personal experience on installing IM on the server
Some time ago I wanted to install IM on my new dev and live server, the dev server is running OSX and the live server is running a Fedora distribution. So the first step before I tried to install IM was to read the documentation (yeah I’m one of those guys that also actually reads the readme files and documentation 😉 of products). I followed the “Install from source” tutorial. So I started with the live server, after downloading and unpacking IM I ran the ./configure command immediately I was faced with the error “no acceptable c compiler found in $PATH”, now my Linux skills are far from topnotch, so after some googling I found out that the easiest way to fix this issue was to install GCC (GNU Compiler Collection) that already included a C compiler. After installing GCC and running the ./configure command everything went fine, IM was installed successfully. I wanted to test if it was working correctly so I tried to resize several images but again an error occurred “convert: no decode delegate for this image format”, okay perhaps I should read the documentation more carefully next time because before installing IM you should also install the image libraries that you will use. In my case this was “yum install libjpeg libjpeg-devel libpng libpng-devel libtiff libtiff-devel”, now again I needed to install IM again, not much work, but still something to remember when installing IM. On the dev OSX server installing ImageMagick was quite simple, I used a precompiled dmg and only needed to install the Apple XCode developer tools.
So to summarize:
Advantages of using ImageMagick:
- it uses less resources, forget about the memory_limit issues with PHP when using GD and large images
- it’s slighty faster (note: depending on the filetype and image size GD beats IM in speed when it comes to resizing
- Image Magick has support for more filetypes
- as I showed before, it is very simple to use
exec('convert "'.$sSourcePath.'" -resize '.$iWidth.'x"'.$sDestinationPath.'"');
- Some very nice features like liquid scaling or seam carving
Disadvantages of using Image Magick:
- you need to have full access to your server, it isn’t bundled with PHP
- compiling IM can give some trouble, you shouldn’t forget to get the image libraries you want to use
Useful links
https://t.me/Official_1xbet_1xbet/1732
Josephadvem
17 Oct 25 at 10:36 am
https://t.me/s/Official_1xbet_1xbet/1805
Josephadvem
17 Oct 25 at 11:00 am
https://t.me/s/Official_1xbet_1xbet/1597
Josephadvem
17 Oct 25 at 11:04 am
https://t.me/Official_1xbet_1xbet/1703
Josephadvem
17 Oct 25 at 11:31 am
https://t.me/s/Official_1xbet_1xbet/1637
Josephadvem
17 Oct 25 at 11:34 am
https://t.me/s/Official_1xbet_1xbet/1599
Josephadvem
17 Oct 25 at 12:00 pm
https://t.me/s/Official_1xbet_1xbet/1740
Josephadvem
17 Oct 25 at 12:04 pm
https://t.me/s/Official_1xbet_1xbet/1643
Josephadvem
17 Oct 25 at 12:30 pm
https://t.me/s/Official_1xbet_1xbet/1716
Josephadvem
17 Oct 25 at 12:33 pm
https://t.me/s/Official_1xbet_1xbet/1809
Josephadvem
17 Oct 25 at 12:58 pm
https://t.me/Official_1xbet_1xbet/1620
Josephadvem
17 Oct 25 at 1:02 pm
https://t.me/s/Official_1xbet_1xbet/1756
Josephadvem
17 Oct 25 at 1:28 pm
https://t.me/s/Official_1xbet_1xbet/1772
Josephadvem
17 Oct 25 at 1:32 pm
https://t.me/Official_1xbet_1xbet/1674
Josephadvem
17 Oct 25 at 1:59 pm
https://t.me/Official_1xbet_1xbet/1601
Josephadvem
17 Oct 25 at 2:02 pm
https://t.me/s/Official_1xbet_1xbet/1715
Josephadvem
17 Oct 25 at 2:27 pm
https://t.me/s/Official_1xbet_1xbet/1632
Josephadvem
17 Oct 25 at 2:31 pm
https://t.me/s/Official_1xbet_1xbet/1610
Josephadvem
17 Oct 25 at 2:58 pm
https://t.me/s/Official_1xbet_1xbet/1644
Josephadvem
17 Oct 25 at 3:02 pm
https://t.me/Official_1xbet_1xbet/1833
Josephadvem
17 Oct 25 at 3:28 pm
https://t.me/s/Official_1xbet_1xbet/1794
Josephadvem
17 Oct 25 at 3:32 pm
https://t.me/s/Official_1xbet_1xbet/1784
Josephadvem
17 Oct 25 at 3:58 pm
https://t.me/s/Official_1xbet_1xbet/1739
Josephadvem
17 Oct 25 at 4:02 pm
https://t.me/s/Official_1xbet_1xbet/1743
Josephadvem
17 Oct 25 at 4:28 pm
https://t.me/Official_1xbet_1xbet/1722
Josephadvem
17 Oct 25 at 4:32 pm
https://t.me/s/Official_1xbet_1xbet/1705
Josephadvem
17 Oct 25 at 4:57 pm
https://t.me/Official_1xbet_1xbet/1845
Josephadvem
17 Oct 25 at 5:01 pm
https://t.me/Official_1xbet_1xbet/1679
Josephadvem
17 Oct 25 at 5:27 pm
https://t.me/s/Official_1xbet_1xbet/1765
Josephadvem
17 Oct 25 at 5:31 pm
https://t.me/s/Official_1xbet_1xbet/1608
Josephadvem
17 Oct 25 at 5:56 pm
https://t.me/s/Official_1xbet_1xbet/1657
Josephadvem
17 Oct 25 at 5:59 pm
https://t.me/s/Official_1xbet_1xbet/1697
Josephadvem
17 Oct 25 at 6:24 pm
https://t.me/Official_1xbet_1xbet/1800
Josephadvem
17 Oct 25 at 6:28 pm
https://t.me/Official_1xbet_1xbet/1768
Josephadvem
17 Oct 25 at 6:56 pm
https://t.me/Official_1xbet_1xbet/1731
Josephadvem
17 Oct 25 at 7:00 pm
https://t.me/s/Official_1xbet_1xbet/1658
Josephadvem
17 Oct 25 at 7:28 pm
MedicoSur: MedicoSur – mexican pharmacy
AndrewPal
17 Oct 25 at 7:28 pm
https://t.me/s/Official_1xbet_1xbet/1702
Josephadvem
17 Oct 25 at 7:31 pm
https://t.me/Official_1xbet_1xbet/1758
Josephadvem
17 Oct 25 at 8:03 pm
https://t.me/s/Official_1xbet_1xbet/1615
Josephadvem
17 Oct 25 at 8:29 pm
https://zencaremeds.com/# ZenCare Meds com
MervinWoorE
17 Oct 25 at 8:30 pm
https://t.me/Official_1xbet_1xbet/1719
Josephadvem
17 Oct 25 at 8:32 pm
https://t.me/Official_1xbet_1xbet/1795
Josephadvem
17 Oct 25 at 8:58 pm
https://t.me/s/Official_1xbet_1xbet/1754
Josephadvem
17 Oct 25 at 9:01 pm
https://t.me/s/Official_1xbet_1xbet/1732
Josephadvem
17 Oct 25 at 9:27 pm
https://t.me/Official_1xbet_1xbet/1738
Josephadvem
17 Oct 25 at 9:56 pm
https://t.me/Official_1xbet_1xbet/1642
Josephadvem
17 Oct 25 at 9:59 pm
https://t.me/Official_1xbet_1xbet/1611
Josephadvem
17 Oct 25 at 10:25 pm
https://t.me/Official_1xbet_1xbet/1763
Josephadvem
17 Oct 25 at 10:29 pm
https://t.me/Official_1xbet_1xbet/1746
Josephadvem
17 Oct 25 at 10:54 pm