Login | Register




Post new topic Reply to topic  [ 1 post ] 
Author Message
 Post subject: Ip Image Generator
PostPosted: Sun Feb 07, 2010 5:33 am 
Site Admin
Joined: Sat Feb 06, 2010 11:13 pm
Posts: 19
This Script will Generate an image with the viewer's ip address on it. You can link this in other websites, or signatures by copying the links provided below.
Example
Image
BB Code
Code:
[url=http://fluidcoding.com/PhpIpImage.php][IMG]http://www.FluidCoding.com/YourIpPic.php[/IMG][/url]

HTML
Code:
<a href="http://fluidcoding.com/PhpIpImage.php"><img src="http://www.fluidcoding.com/YourIpPic.php"></a>

Code:
/*
   FluidCoding - Ip Image Generator
   Author: Brian Sonnie
*/

<?php
// Get the Ip
$ip = $_SERVER['REMOTE_ADDR'];

header("Content-type: image/png");

// Create an image width: 250, height: 40.
$im = @imagecreate(205, 40)
    or die("Cannot Initialize new GD image stream");
// Background Color = black
$background_color = imagecolorallocate($im, 0, 0, 0);
// Text Color = Red
$text_color = imagecolorallocate($im, 255, 0, 0);
// Print First line onto image
imagestring($im, 3, 10, 5,  "Your Ip is: ".$ip, $text_color);
// Print Second Line
imagestring($im, 3, 10, 5+imagefontheight(3),
         "Generated by FluidCoding", $text_color);

imagepng($im);
// Free up memory
imagedestroy($im);

?>


http://fluidcoding.com/PhpIpImage.php


Profile  Offline
 

Display posts from previous:  Sort by  

Post new topic Reply to topic  [ 1 post ] 


Who is online

Users browsing this forum: No registered users and 1 guest

Panel

Top You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum
Search for:
Jump to:  
 cron



Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
Dizayn Ercan Koc