GMail Signature Script
Demo/Generator: http://email.liquism.com/
Download: http://www.liquism.com/downloads/email/
Version: 1.0.0
Support: http://forums.liquism.com/
This script has been made for free for the public to use under the license at: http://www.liquism.com/info/license/

Requirements:
Preferably the latest versions.
Installation:
- Unzip gmail.zip
- Place all these files in the SAME folder:
- gmail.php - generator page
- gmail1.php
- gmail2.php
- gmail3.php
- gmail1.png
- gmail2.png
- gmail3.png
- tahoma.ttf - font file
Instructions:
- Use the generator page by typing this into your address bar:
- http://www.yourdomain.com/yourpath/gmail.php
- Just type in the username in the textbox and click create and save.
- This page is commented for your convenience, edit them out if you want to and know what you're doing.
or
- Link to a generator directly by typing this into your address bar:
- http://www.yourdomain.com/yourpath/gmail1.php?userid=[username]
- http://www.yourdomain.com/yourpath/gmail2.php?userid=[username]
- http://www.yourdomain.com/yourpath/gmail3.php?userid=[username]
- Just replace [username] with your gmail username.
Tips:
- Forum use: (replace [username] with your gmail username) (only if forum allows dynamic images)
- [IMG]http://www.yourdomain.com/yourpath/gmail1.php?userid=[username]&gmail.png[/IMG]
- [IMG]http://www.yourdomain.com/yourpath/gmail2.php?userid=[username]&gmail.png[/IMG]
- [IMG]http://www.yourdomain.com/yourpath/gmail3.php?userid=[username]&gmail.png[/IMG]
- Website use: (replace [username] with your gmail username)
- <img border="0" src="http://www.yourdomain.com/yourpath/gmail1.php?userid=[username]">
- <img border="0" src="http://www.yourdomain.com/yourpath/gmail2.php?userid=[username]">
- <img border="0" src="http://www.yourdomain.com/yourpath/gmail3.php?userid=[username]">
FAQ:
The generator page displays & generates blank images, why?
Please make sure your server has PHP & GD library ENABLED before contacting support.
The generator page generates blank images, why?
Please make sure the session_start();
PHP code is at the very top of the page, BEFORE any other coding.
The generator is too short for my address?
I'm sorry this is a static image generator, if you require a longer username, please use the generator at Liquism which is dynamic.
How come the '+' sign doesn't work for direct use and works for the generator page?
This is because PHP does not recognise the '+' symbol when it uses the $_GET function in the script and replaces it with a space, while the genertaor page uses sessions which does recognise the '+' symbol.
How can I change the font colour?
Goto line: $color = imagecolorallocate($im, 164, 164, 164);
and edit the numbers 164, 164, 164 where the first number is red, second is green, third is blue.
How can I change the font face?
Edit all 'tahoma.ttf' in the code with the filename of the new font. Make sure the font is OpenType, as TrueType will not work.
How can I change the font size?
Edit all the number '9' in the code to change the size of the font.
After changing the font and/or size, the username is out of place, how to fix?
Goto the line with: $userid_start
and play around with the last number (the one after the '+') until it aligns with the @ symbol.