Very simply, you do something like this...
<?
$im = @ImageCreateFromGIF ('someimage.gif');
if (you want to convert to png){
ImagePng($im, 'newimage.png');
}
if (you want to convert to jpg){
ImageJpeg($im, 'newimage.jpg', [qual]);
// where qual is a quality figure 1-100
}
?>