Log in

View Full Version : Thumbnail Quality


corsacrazy
07-11-2003, 07:38 AM
i am trying to generate a thumb nail it works great but the thumbs are of VERY poor quality here is the codes im using

function CreateThumb($picvarname, $destpath, $filename, $tsize ,$cmod="777"){
global $gal_base_path;
//This section will add a new photo
$newfilename = explode(".",$filename);
$imageinfo = getimagesize($picvarname);


// for GDLib 2.0 and higher
// $dst_img = imagecreatetruecolor($new_w,$new_h);
// imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_w, $new_h, imagesx($src_img), imagesy($src_img));
// for GDLib < 2.0
$dst_img = imagecreate($new_w,$new_h);
imagecopyresized($dst_img, $img, 0, 0, 0, 0, $new_w, $new_h, imagesx($img), imagesy($img));
$pathstring=$destpath."gt_" . $newfilename[0] . ".jpg";
imagejpeg($dst_img, $pathstring, 75);
chmod($pathstring,"777");
return TRUE;
endswitch;
} else return FALSE;

filburt1
07-11-2003, 10:46 AM
Use imagecreatetruecolor instead. This is mentioned right in the PHP documentation, please read it in the future :)

corsacrazy
07-11-2003, 01:24 PM
Thanks 4 ur support im so dumb ! u never really see things in php intil pasted into vbulletin LOL need a :smoke:

Highlander
07-17-2003, 04:43 AM
how do i create thumbs now if i uplaod an attachment GIF/JPG

corsacrazy
07-17-2003, 07:15 AM
my code wasnt for the vbulletin attachments it was a gallery im intergrating