What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » General » General Chit Chat » Edit a sig for me? Identify a font to?

Pages: (2): « First [ 1 ] 2 » Last »
Edit a sig for me? Identify a font to?
Author: Message:
RebelSean
Veteran Member
*****

Avatar
Microsoft Evangelist

Posts: 2602
Reputation: 59
33 / Male / Flag
Joined: May 2004
Status: Away
O.P. Edit a sig for me? Identify a font to?
Last year I had a nice sig made, and I was going through my pictures and I found it. So, I'm wondering if someone could do some editing of it. In the bottom right corner, it says Mess.be Mod, can someone remove that (Nicely). Also, can someone please identify the font on the sig and the size in which is being used in the bottom right corner for the mess.be mod.

Thanks in advance.


.gif File Attachment: Rebel_Sig_Snow.gif (67.72 KB)
This file has been downloaded 171 time(s).
I'm on: Twitter, Facebook, and Neowin
09-18-2005 01:44 AM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Edit a sig for me? Identify a font to?
[Image: attachment.php?pid=536809]

No idea about the font.

.gif File Attachment: Rebel_Sig_Snow_V2.gif (66.92 KB)
This file has been downloaded 311 time(s).
09-18-2005 02:38 AM
Profile E-Mail PM Find Quote Report
RebelSean
Veteran Member
*****

Avatar
Microsoft Evangelist

Posts: 2602
Reputation: 59
33 / Male / Flag
Joined: May 2004
Status: Away
O.P. RE: Edit a sig for me? Identify a font to?
You win Matty! Thanks alot bro :D. Now to figure out the font for my countdown to be stuck on it.
Does someone want to help me with the code now for my image? The code is for JPEG functions, and I need it to work on GIF.

code:
<?

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

$to_go = mktime(0, 0, 0, 12, 25, 2005) - time();

$days = ceil($to_go / (60 * 60 * 24));
$hours = ($to_go / (60 * 60)) % 24;
$minutes = ($to_go / 60) % 60;
$seconds = $to_go % 60;

$str = $days . " " . ($days == 1 ? "day" : "days") . ", " . $hours . " " . ($hours == 1 ? "hour" : "hours") . ",";
$str2 = $minutes . " " . ($minutes == 1 ? "minute" : "minutes") . " and " . $seconds . " " . ($seconds == 1 ? "second" : "seconds");

$image = ImageCreateFromjpeg("christmas.jpg");
$white    = ImageColorAllocate($image, 255, 255, 255);

imagettftext($image, 13, 0, 35, 60, $white, 'SCRIPTBL.TTF', $str);
imagettftext($image, 13, 0, 40, 80, $white, 'SCRIPTBL.TTF', $str2);
imagettftext($image, 11, 0, 115, 100, $white, 'SCRIPTBL.TTF', 'to christmas 2005..');

Imagejpeg($image);
ImageDestroy($image);

?>
I'm on: Twitter, Facebook, and Neowin
09-18-2005 02:48 AM
Profile PM Web Find Quote Report
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
RE: Edit a sig for me? Identify a font to?
Umm

find  ImageCreateFromjpeg  change to  ImageCreateFromgif
header("Content-type: image/jpeg");   to header("Content-type: image/gif");
imagejpeg to imagegif

that should make it work with gifs.

also btw im guessing your host dosnt have the latest GD which allows animations so when you load your animated christmas gif it will take the first frame , write text to it and output it killing the cool snow.
[Image: dt2.0v2.png]      Happy Birthday, WDZ
09-18-2005 03:45 AM
Profile PM Web Find Quote Report
RebelSean
Veteran Member
*****

Avatar
Microsoft Evangelist

Posts: 2602
Reputation: 59
33 / Male / Flag
Joined: May 2004
Status: Away
O.P. RE: Edit a sig for me? Identify a font to?
Animations work on my site o.O?

[Image: christmas.gif]

This post was edited on 09-18-2005 at 04:12 AM by RebelSean.
I'm on: Twitter, Facebook, and Neowin
09-18-2005 04:12 AM
Profile PM Web Find Quote Report
WDZ
Former Admin
*****

Avatar

Posts: 7106
Reputation: 107
– / Male / Flag
Joined: Mar 2002
RE: Edit a sig for me? Identify a font to?
quote:
Originally posted by XxRebelSeanxX
Animations work on my site o.O?
Of course you can host them, but what -dt- is saying is that the animation will be lost if you use a PHP script with GD to process that image. In other words, the resulting image when you do imagegif($image) will be just the first frame.
09-18-2005 04:23 AM
Profile PM Web Find Quote Report
RebelSean
Veteran Member
*****

Avatar
Microsoft Evangelist

Posts: 2602
Reputation: 59
33 / Male / Flag
Joined: May 2004
Status: Away
O.P. RE: Edit a sig for me? Identify a font to?
How do I animate it then? I got everything working fine now, and I have the sig up.

[Image: christmas2.php]

P.S. Can you unbann me from the shoutbox now? Been a week.

This post was edited on 09-18-2005 at 04:43 AM by RebelSean.
I'm on: Twitter, Facebook, and Neowin
09-18-2005 04:42 AM
Profile PM Web Find Quote Report
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
RE: Edit a sig for me? Identify a font to?
hmm well Im guessing your server would most likely have the ImageMagick binary installed so you could use exec() in php to excucute it from command line to create an animated picture...
http://software.newsforge.com/article.pl?sid=05/07/01/1959251&from=rss
http://www.imagemagick.org/script/command-line-options.php
[Image: dt2.0v2.png]      Happy Birthday, WDZ
09-18-2005 05:01 AM
Profile PM Web Find Quote Report
dotNorma
Veteran Member
*****

Avatar

Posts: 1745
Reputation: 17
32 / Male / –
Joined: May 2003
RE: Edit a sig for me? Identify a font to?
For the font try

http://www.myfonts.com/fonts/agfa/galahad/regular/

Its to little and close together for WhatTheFont to identify well.
09-18-2005 05:06 AM
Profile PM Web Find Quote Report
RebelSean
Veteran Member
*****

Avatar
Microsoft Evangelist

Posts: 2602
Reputation: 59
33 / Male / Flag
Joined: May 2004
Status: Away
O.P. RE: Edit a sig for me? Identify a font to?
It's all good now Norma Jean. I'm just going to use what font I have on there for the script.

Now to get it animating. -dt- that post is like greek to me :p. Got step-by-step instructions?
I'm on: Twitter, Facebook, and Neowin
09-18-2005 05:09 AM
Profile PM Web Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On