Dynamic Signature

Tags And Keywordsdynamic signature, free php scripts


Subject: 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)

Subject: 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 ?

Subject: 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! :P

Subject: Re: Dynamic Signature
wow talk about saving time and human memory..THANK YOU

Subject: Re: Dynamic Signature
Unfortunately there are some sites which do not accept images in signatures... :twisted:

You want an example?

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

Subject: Re: Dynamic Signature
whahahahahaa... time to reconsider?? :roll:

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 :cry: (i won t mention the site that did that hahaha)

Subject: Re: Dynamic Signature
Thanks MG, I think this is very usefull :mryellow:

:thanks:

Profile PM  
Subject: Re: Dynamic Signature
How dynamically it will generate?

Subject: 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.

Subject: 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

Subject: Re: Dynamic Signature
Hi, can you please explain how did you manage to solve this?


Page 1 of 1


  
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events

   

This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.

Powered by Icy Phoenix based on phpBB
Generation Time: 0.2239s (PHP: 12% SQL: 88%)
SQL queries: 17 - Debug Off - GZIP Enabled