JunoMR2 Posted July 11, 2006 Share Posted July 11, 2006 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 Quote Link to comment https://forums.phpfreaks.com/topic/14263-problems-creating-images/ Share on other sites More sharing options...
Prismatic Posted July 11, 2006 Share Posted July 11, 2006 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] Quote Link to comment https://forums.phpfreaks.com/topic/14263-problems-creating-images/#findComment-56043 Share on other sites More sharing options...
JunoMR2 Posted July 12, 2006 Author Share Posted July 12, 2006 did that, same result. Quote Link to comment https://forums.phpfreaks.com/topic/14263-problems-creating-images/#findComment-56588 Share on other sites More sharing options...
JunoMR2 Posted July 12, 2006 Author Share Posted July 12, 2006 nevermind. in Zend that doesn't work. however, on my live server it does work. thanks_Juno Quote Link to comment https://forums.phpfreaks.com/topic/14263-problems-creating-images/#findComment-56589 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.