[-_-] Posted February 4, 2008 Share Posted February 4, 2008 Hi there. I'm working on a proxy search form for my torrent meta search site but the image shows up with very poor quality. Is there a way I can make it better quality? Heres the page so you can see what I'm talking about. http://www.plentyoftorrents.com/proxy/index.php And heres the code for the image. <?php $img_number = imagecreate(275,25); $backcolor = imagecolorallocate($img_number,76,174,255); $textcolor = imagecolorallocate($img_number,255,255,255); imagefill($img_number,0,0,$backcolor); $number = " Your IP is $_SERVER[REMOTE_ADDR]"; Imagestring($img_number,10,5,5,$number,$textcolor); header("Content-type: image/jpeg"); imagejpeg($img_number); ?> Theres no other code I just refer to it on the index page. Thanks. Link to comment https://forums.phpfreaks.com/topic/89442-solved-jpegs-in-php-fixing-poor-quality/ Share on other sites More sharing options...
KrisNz Posted February 4, 2008 Share Posted February 4, 2008 try <?php $img_number = imagecreatetruecolor(275,25); //this doesn't make any visible difference here, but the php manual recommends using it. $backcolor = imagecolorallocate($img_number,76,174,255); $textcolor = imagecolorallocate($img_number,255,255,255); imagefill($img_number,0,0,$backcolor); $number = " Your IP is $_SERVER[REMOTE_ADDR]"; Imagestring($img_number,10,5,5,$number,$textcolor); header("Content-type: image/png"); imagepng($img_number); ?> Link to comment https://forums.phpfreaks.com/topic/89442-solved-jpegs-in-php-fixing-poor-quality/#findComment-458044 Share on other sites More sharing options...
[-_-] Posted February 4, 2008 Author Share Posted February 4, 2008 Great, it looks alot better now. Thanks. Link to comment https://forums.phpfreaks.com/topic/89442-solved-jpegs-in-php-fixing-poor-quality/#findComment-458048 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.