Reputation: 629
Is there any way to convert GIF file in JPG using php?
Upvotes: 1
Views: 612
Reputation: 129059
There's several ways to convert image formats in PHP.
One way is with GD:
$im=imagecreatefromgif("agifimage.gif");
imagejpeg($im, "ajpegimage.jpg");
imagedestroy($im);
Upvotes: 0
Reputation: 522382
Yes, using the gd or ImageMagick libraries or friendly wrappers around them like WideImage.
Upvotes: 1