Icy Phoenix

     
 

Dynamic Signature

Dynamic Signature

Article
Reply with quote    Download Post  
Post Dynamic Signature 
 
I have created a small script for a friend which generates a dynamic signature you can fill with the content you like.

The script is very very basic.

All you have to do is edit the code and insert what you need to be printed:

Code: [Download] [Hide] [Select]
<?php
/**
*
* @package Icy Phoenix
* @version $Id$
* @copyright (c) 2008 Icy Phoenix
* @license http://opensource.org/licenses/GPL-license.php GNU Public License
*
*/

$randomquote = array(
    
'My first quote!',
    
'My second quote!',
    
'My third quote!',
    
'My fourth quote!',
    
'My last quote!'
);

$image = 'signature_bar.png';
$im = imagecreatefrompng($image);

$main_color = imagecolorallocate($im, 51, 102, 153);
$black = imagecolorallocate($im, 0, 0, 0);
$orange = imagecolorallocate($im, 255, 85, 0);
$blue = imagecolorallocate($im, 68, 102, 136);
$red = imagecolorallocate($im, 255, 0, 0);
$green = imagecolorallocate($im, 0, 160, 0);

$left_margin = 10;

imagestring($im, 3, $left_margin, 2, 'My wonderful name!', $orange);
imagestring($im, 2, $left_margin, 18, 'Another text example...', $main_color);
imagestring($im, 2, $left_margin, 30, 'Ok, another one!', $blue);
imagestring($im, 1, $left_margin, 48, $randomquote[rand(0, sizeof($randomquote) - 1)], $green);

header('Content-Disposition: filename=signature_bar.png');
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);

?>


When you have edited the PHP file, just upload it to your server, and then write the address in your browser!

Result will be something like this:
signature_bar_demo


I hope you will like this!

dynamic_signature.zip
Description: Dynamic Signature 
Download
Filename: dynamic_signature.zip
Filesize: 7.7 KB
Downloaded: 849 Time(s)




 
Mighty Gorgon - View user's profile Send private message  
Mighty Gorgon [ Tue 25 May, 2010 19:57 ]
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us


Dynamic Signature

Comments
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
hhmmm looks intresting to someone having a hard time making his mind up ..nice idea MG

nicest thing would be one sig change would update all of them anywhere ?



 
Joshua203 - View user's profile Send private message  
Joshua203 [ Tue 25 May, 2010 20:17 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
Yes, that is the case... when you have generated the image how you like, you should then point all your signatures to that image.

When you are tired with that signature, all you have to do is changing the image or the text in it... and all signature will be updated at once!



 
Mighty Gorgon - View user's profile Send private message  
Mighty Gorgon [ Tue 25 May, 2010 20:23 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
wow talk about saving time and human memory..THANK YOU



 
Joshua203 - View user's profile Send private message  
Joshua203 [ Tue 25 May, 2010 20:39 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
Unfortunately there are some sites which do not accept images in signatures...

You want an example?

By chance do you know a site called icyphoenix.com?



 
Mighty Gorgon - View user's profile Send private message  
Mighty Gorgon [ Tue 25 May, 2010 20:50 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
whahahahahaa... time to reconsider??  

Edit : there s also sites that removed my text link to my home page so you re not the worst

after removal my siggy said: (under constuction/development ..forever)

so i removed that myself   (i won t mention the site that did that hahaha)



 
Joshua203 - View user's profile Send private message  
Joshua203 [ Tue 25 May, 2010 21:39 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
Thanks MG, I think this is very usefull

 



 
TheSteffen - View user's profile Send private message  
TheSteffen [ Thu 03 Jun, 2010 09:40 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
How dynamically it will generate?



 
jameswatt - View user's profile Send private message  
jameswatt [ Sat 03 Mar, 2012 08:11 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
you should be able to test that in 5 to 10 minutes (without editing your forum), but there should not exist any degrees in "random", but if there are limitations I expect the limit is php's limit ...not the script's.



 
Joshua203 - View user's profile Send private message  
Joshua203 [ Sat 03 Mar, 2012 11:17 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
can someone help me out

i am trying to get this to show up without line breaks or any extra characters. but when users input data like
Code: [Download] [Hide]
  1. minecraft 
  2. cod 
  3. rainbow 
  4.  

it just shows up in one line with weird chars. i want it to show up on one line but without chars

Code: [Download] [Hide] [Select]
imagestring($im, 3, $left_margin, 38,  str_replace('/[^A-Za-z0-9\. -\!\?\(\)\<\>\@]/', '', $_POST['games']), $green);


and also how can i use method="get" to show the data.

i tried using:
h**p://***.crimson.pcriot.com/sign.....free-forum.net

but it didnt work


got this figured out



 
leroymcqy - View user's profile Send private message  
leroymcqy [ Thu 06 Feb, 2014 16:30 ]
Reply with quote    Download Post  
Post Re: Dynamic Signature 
 
Hi, can you please explain how did you manage to solve this?



 
Mighty Gorgon - View user's profile Send private message  
Mighty Gorgon [ Tue 11 Feb, 2014 17:08 ]
Display posts from previous:    

HideWas this topic useful?

Post new topic  Reply to topic  Page 1 of 1