And the reason?

link|improve this question

49% accept rate
1  
What is your specific purpose? – Russell Dias Jun 11 '10 at 13:26
feedback

3 Answers

up vote 9 down vote accepted

ImageMagick is not a PHP image processing library, it's a stand-alone package that can be accessed from PHP. It is incredibly more feature-rich than GD. See the ImageMagick Usage page with hundreds of examples. GD supports very primitive operations only (copying, resizing, geometric primitives, basic text rendering).

Everyday things ImageMagick does better:

  • Can handle more image formats (more than 100 IIRC - GD supports only 5)
  • Better rendering of True-Type fonts, takes into consideration kerning hints in the font
  • Doesn't use the PHP script's memory
link|improve this answer
Why do you say it's stand-alone ? I found it requires a php extension too like gd: valokuva.org/outside-blog-content/imagick-windows-builds/080709 – user198729 Jun 11 '10 at 13:34
1  
@user the PHP extension is optional. You can call ImageMagick through exec() as well. It is by its nature not a library designed specifically for PHP like GD is - there are ImageMagick extensions for Perl, Ruby, Python.... – Pekka Jun 11 '10 at 13:35
Then what's the PHP imagick extension for if we can also make things work without it? – user198729 Jun 11 '10 at 13:36
@user it provides the imageMagick commands natively within PHP, instead of having to build a big command line containing all the parameters. – Pekka Jun 11 '10 at 13:37
1  
GD is not strictly a library designed for PHP, but rather just an image manipulation library with bindings for PHP (and many other languages). Imagemagick is a standalone app that you launch either using exec() or a wrapper class/extensions that simplifies the usage but you never actually need them. – Joonas Trussmann Jun 11 '10 at 13:40
show 4 more comments
feedback

If you want portability, stick with GD is available in almost every server that runs PHP.

If you want to use a more powerful library or image manipulation is crucial to your application AND you can control your environment, then go for ImageMagick.

link|improve this answer
feedback

What data have you obtained so far?

What functionality are you looking for? I would suggest a Google search first if you have done no research

http://www.google.co.uk/search?q=image+Magick+vs+gd&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.