<?php $input= "link2.gif"; $output='test.jpg' ; $image=imagecreatefromgif($input); imagejpeg($image,$output); imagedestroy($image); unlink($input);