SohailRajput
SohailRajput

Reputation: 629

Is it possible to convert GIF file in JPG and save from one place to another in php?

Is there any way to convert GIF file in JPG using php?

Upvotes: 1

Views: 612

Answers (2)

icktoofay
icktoofay

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

deceze
deceze

Reputation: 522382

Yes, using the gd or ImageMagick libraries or friendly wrappers around them like WideImage.

Upvotes: 1

Related Questions