Jump to content

problems creating images


JunoMR2

Recommended Posts

if you go to ubermodest.com, you can see the problem at the bottom of the page.

here is the code that makes the image ( not my own );

$img_number = imagecreate(275,25);
$backcolor = imagecolorallocate($img_number,102,102,153);
$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);


www.ubermodest.com

_Juno
Link to comment
https://forums.phpfreaks.com/topic/14263-problems-creating-images/
Share on other sites

Make this genimage.php
[code]
<?php
$img_number = imagecreate(275,25);
$backcolor = imagecolorallocate($img_number,102,102,153);
$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);
?>
[/code]

then on your site do
[code]
<img src="genimage.php" alt="Your IP" width="275" height="25">
[/code]

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.