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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.