Banner

Sponsor

Login


Welcome Back!
Guest
Guest

Register

Lost your password?

54 users online



Any one know how to..

Any one know how to..

Currently viewing this thread: 1 (0 members and 1 guests)


eskiehax

eskiehax

Neverside Newbie
Status: Offline!

Any one know how to..

make them images , like

" Your OS is " , " You Have viewed this topic xx times" etc ?? can any one post anything or give a site on how to make sigs like this. thank you

___________________

:: Feed The EsK!e Inside ::

hamstu

hamstu

Neverside Newbie
Status: Offline!

I don't belive this belongs in the Photoshop Forum. Don't worry though a Mod will probably move it.

___________________

http://www.hamstu.com/images/hamstu_com.gif

solow

solow

Status: Offline!

I suggest that you find someone on here that has one like you are talking about and PM them about it. I think that might be your best bet.Grin

___________________

"I learn so I can Help" - Solow

eskiehax

eskiehax

Neverside Newbie
Status: Offline!

who has one , coz i dnt use this forum that much ,

___________________

:: Feed The EsK!e Inside ::

Jorgebe

Jorgebe

I like to play with webserver, php, photoshop ...
Status: Offline!

I thingk i know how it works, you need to make a background and save it as jpg or png, then make a php script that with the use of gd add's the text to it and the out put is the image.

___________________

Jorge

Devboy

Devboy

Status: Offline!

u mean like my sig?

___________________

http://e-xtreme.net/pictures/sig/playing.jpg

eskiehax

eskiehax

Neverside Newbie
Status: Offline!

i aint good @ php , Yeah dev boy like urs.... dev can u help me make one

___________________

:: Feed The EsK!e Inside ::

Devboy

Devboy

Status: Offline!

It's really Simple i havent looked into mine much but, u need php code as i havent looked into mine much i just used the simple ip code Smile,

Right open notepad and type as follows:

Quote:

<?php

// get ISP
$hostname = gethostbyaddr($REMOTE_ADDR);
$thesegments = explode(".", $hostname);
$reversed = array_reverse($thesegments);
$theisp = "$reversed[1].$reversed[0]";

Header("Content-type: image/jpeg");
Header("Expires: Mon, 1, 1999 05:00:00 GMT");
Header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
Header("Cache-Control: no-store, no-cache, must-revalidate");
Header("Cache-Control: post-check=0, pre-check=0", false);
Header("Pragma: no-cache");

//lets go....

$im = imagecreatefromjpeg("sig.jpg");
$mycolor = imagecolorclosest($im, 255, 255, 255);

// some ip's dont have a reverse name... in that case just display their ip
if(is_numeric($reversed[0]))
{
imagestring($im, 3, 50, 22, "Your IP: $REMOTE_ADDR", $mycolor);
}
else
{
imagestring($im, 3, 50, 22, "Your IP: $REMOTE_ADDR", $mycolor);
}

Imagejpeg($im,'',90);
ImageDestroy($im);
?>

And save the text as: playing.jpg thats right.jpg

Now step 2 find an image you like and to save u from changing the code save it as: sig.jpg

now once youi have done that, upload it to a php supported server and goto: www.yourdomain.com/playing.jpg

and wola u have the same sig as mine, to add o/s etc to it u need to insert more code into playing.jpg

Have fun.

___________________

http://e-xtreme.net/pictures/sig/playing.jpg

Quick Jump:

Main Navigation


Site & Graphic Design by Aeon Tan
Developed by Jeremie Pelletier & Scott Roach


NeverAPI generated this page in 0.0085 seconds.