Jump to content

[SOLVED] jpegs in php fixing poor quality


[-_-]

Recommended Posts

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

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);
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.