Is there any way to convert GIF file in JPG using php?
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);
Yes, using the gd or ImageMagick libraries or friendly wrappers around them like WideImage.