* Thus wrote Merlin ([EMAIL PROTECTED]):
> hmmmm. I see your point.
> 
> Imagemagick does not need to rebuild the configure, but the pear extension:
> 
> 5) cd /usr/src/php/ext/imagick
> 6) phpize

Ahh..  that explains  it all :)


> 
> I need to be able to convert gifs to jpegs. GD cant do thsi, right?

Sure can:

$im = imagecreatefromgif('/path/to/image.gif');
imagejpeg($im, '/path/to/converted.jpg');

You just cant use the imagegif() function unless you use a version
of gd < 1.6.

Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to