For those that use the image gallery in tiki, note that GD is used by php for image processing. But GDlib comes with some restrictions on file formats, especially regarding GIF use. Support for Image Magick is added now, that offers a wider range of available file formats.
to php.ini, and finally copy all the dll files from ImageMagick installation root directory to /windows/system32.
Debian sid users have that package : apt-get install php4-imagick
Other users have to compile it. To compile it, you have to recompile your PHP Get the PHP sources on http://php.net, read the INSTALL file from the imagick module and ./configure PHP with --with-imagick
Special Tip :
If your compilation stops, There are 2 Bugs:
do a "rm ./configure" in your php src directory before performing Step 8 of the INSTALL-file of imagick.
edit imagick.c (Version 0.95) Line 624 should be "RunlengthEncodedCompression" not "RLECompression", this may depend on your libMagick however your make should tell you the right way. Install your new PHP, restart your webserver. Do a phpinfo() to see if Imagick support is added. If not, you may have forgot to rm ./configure.
Tikiwiki setting up
In the Image Gallery Config select Imagick as Library to use for processing images. If PHP is unable to find the PHP Imagick the setting reverts back to GD.