Should I use ImageMagick, or GD2, with ImageAPI in Drupal? What are the pros and cons?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- How to get the background from multiple images by
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
If you can avoid ImageMagick, then avoid it.
ImageMagick is a heavy dependency that might not be present everywhere, while GD is more often available.
As for the drupal specific question, I don't know how it integrates with either, so just take my advice as a deployment consideration.
ImageMagick
On the downside, it is not available everywhere and as @Nicholas Goy says, a heavy dependency. But when I have the choice, I use ImageMagick.