Hello,
GD doesnt support GIF format due to copy right issues.
The current stable version (1.8.4) creates PNG, JPEG and WBMP formats.
Also, resizing using GD reduces the image quality and you don't have tight control over the manipulation.
Though it can be good choice if you want to deal with those types cause PHP has built in support for GD.
That's why I would suggest you to go for Imagemagick.
http://www.imagemagick.org
It supports more than 68 formats. Check
http://www.imagemagick.org
Also, not only you can convert the image , you can also mogrify, montage, composite, or identify the image. Check the homepage for more information.
Only thing is PHP doesn't have built in support for it and you would have to use system or exec function to call the imagemagick program.
Thought I highly recommend using Imagemagick !!
JD
Main Topics
Browse All Topics





by: andrivPosted on 2002-02-22 at 20:31:14ID: 6820552
You need to use the GD library, free software for manipulating images and PHP's image functions. You can find the GD library's home page from www.boutell.com/gd or www.cdrom.com/pub/png.
I don't know if it will handle all files but I know it works with jpeg, gif and png.