I am looking for an image processing extension for PHP. I know about gd but it does not have all the features I need. I want to crop, resize, compress images, generate images on the fly, create thumbnails of images, etc.
I would like to know which extensions are available and also how to install them. I know about imagemagick and gmagick; imagemagick is more resource hungry than gmagick but when I tried to use gmagick it is not working properly. Maybe I have not installed it correctly. If anyone knows how to install gmagick on Windows Vista please let me know.
If there are better extensions for image processing in PHP please let me know.
To create thumbnails you can use the executable named 'FFMPEG' which open source and used by youtube too.
For cropping and resizing you donot need a third party I guess.
To compress means ? Well you can zip the image by using pre loaded libraries in PHP.
GIF Images provideds LZW compression. You can convert image to GIF format also. This may result in loss of color definition if the source image file is some JPEG file especially.
:)