GD Would just be
ChangePHP Code:<?php
header("Content-Type: image/gif");
include('albumart.php');
$album = getAlbumArt("Artist Name - Song Name");
$image = imagecreatefromjpeg($album);
imagegif($image);
?>
header("Content-Type: image/gif");
the GIF to whatever file format you want
and change
imagegif($image)
change the gif to whatever file format you want.


Reply With Quote




