|
ok well i got it working now by useing
list($width, $height, $type, $attr) = getimagesize($artwork);
if ($type == "2"){
$albumart = imagecreatefromjpeg($artwork);
}elseif($type == "3"){
$albumart = imagecreatefrompng($artwork);
}
works good, thanks for trying
dpsleep
|