Nationale loterij abonnement wijzigen

  1. Queen Of Atlantis Online Gokkast Spelen Gratis En Met Geld: Microgaming brengt nieuwe titels de meeste maanden, dus er is meestal iets nieuws te spelen.
  2. Casino Zonder Id - Niettemin een veel natuurlijk een zijn fair-gerelateerde spel, die je theoretisch zou.
  3. Casino Spelen Met Gratis Geld: Ze hebben shows, live sporten zoals boksen en UFC, een voedselveld dat een leger kan voeden, en hopen en hopen winkelen.

Blackjack tellen holland casino

4crowns Casino 100 Free Spins
Buiten dat, drie boek symbolen activeert tien gratis spins terwijl drie kaarsen tijdens deze ronde geeft u een extra partij van gratis bochten.
Online Casino Bonus Voorwaarden
Voor blackjack spelers die houden van het spel online, dan is de sectie voor u, want we zullen praten over de meest populaire, en betrouwbare online blackjack sites die niet alleen welkom, maar moedigen hun gebruikers om cryptogeld te gebruiken.
Het wild symbool is een goed ontworpen leeuw en de scatter is een boom met een zon die achter het.

Beter bingo Amersfoort

Henk Ten Voorde Speelautomaten
Playson heeft iets om je mee te verrassen.
Asta Casino No Deposit Bonus
De zeven symbool is echt hot dankzij de hoge pay-line jackpot en de Super Hot 7s gratis spins wild feature.
Roulette Tafel Strategie

Sjoerd Maessen blog

PHP and webdevelopment

ImageMagick installing and exploring it, a good alternative for the GD library

with 69 comments

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:
Liquid Scaling with imagemagick

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.

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

Written by Sjoerd Maessen

July 19th, 2010 at 7:20 am

Posted in API,Server

Tagged with ,

69 Responses to 'ImageMagick installing and exploring it, a good alternative for the GD library'

Subscribe to comments with RSS or TrackBack to 'ImageMagick installing and exploring it, a good alternative for the GD library'.

  1. CharlesCic

    16 Oct 25 at 12:14 pm

  2. CharlesCic

    16 Oct 25 at 12:31 pm

  3. CharlesCic

    16 Oct 25 at 12:34 pm

  4. CharlesCic

    16 Oct 25 at 12:52 pm

  5. CharlesCic

    16 Oct 25 at 12:55 pm

  6. AlbertEnark

    16 Oct 25 at 1:03 pm

  7. AlbertEnark

    16 Oct 25 at 1:25 pm

  8. AlbertEnark

    16 Oct 25 at 1:28 pm

  9. AlbertEnark

    16 Oct 25 at 1:50 pm

  10. AlbertEnark

    16 Oct 25 at 1:53 pm

  11. AlbertEnark

    16 Oct 25 at 2:15 pm

  12. AlbertEnark

    16 Oct 25 at 2:18 pm

  13. AlbertEnark

    16 Oct 25 at 2:40 pm

  14. AlbertEnark

    16 Oct 25 at 2:44 pm

  15. AlbertEnark

    16 Oct 25 at 3:06 pm

  16. AlbertEnark

    16 Oct 25 at 3:09 pm

  17. AlbertEnark

    16 Oct 25 at 3:31 pm

  18. AlbertEnark

    16 Oct 25 at 3:34 pm

  19. AlbertEnark

    16 Oct 25 at 3:56 pm

Leave a Reply