From ef39c6ab47cdde0ec9e57fd6022af1c2e55bbdec Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Tue, 2 Nov 2010 23:26:37 +1100 Subject: [PATCH] PNGs for thumbnails. --- inc/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index af10f40d..c672f2b3 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -350,10 +350,10 @@ $return['width'] = $tn_width; $return['height'] = $tn_height; - $tmp=imagecreatetruecolor($tn_width,$tn_height); - imagecopyresampled($tmp,$src,0,0,0,0,$tn_width, $tn_height,$width,$height); + $tmp=imagecreatetruecolor($tn_width, $tn_height); + imagecopyresampled($tmp, $src, 0, 0, 0, 0, $tn_width, $tn_height,$width,$height); - imagejpeg($tmp,$destination_pic,100); + imagepng($tmp, $destination_pic, 100); imagedestroy($src); imagedestroy($tmp);