Date:
Subject: Combining gifs...
I have gifs named smnnnxxxxxx.gif where nnn = the Ascii
value, numbers sm32 through sm127, and xxxxxx = the
different colors yellow, aqua, white, red or lime.
example:
LimeGreen "0" = sm48lime.gif
Red "z" = sm122red.gif
I have all these gifs because I use them for a scoreboard display
with letters also.
example:
Texans 19 Cowboys 10
would show as:
<tr>
<td>
<img src="sm84yellow.gif" height="22" width="16"><img
src="sm101yellow.gif" height="22" width="16"><img
src="sm120yellow.gif" height="22" width="16"><img
src="sm97yellow.gif" height="22" width="16"><img
src="sm110yellow.gif" height="22" width="16"><img
src="sm115yellow.gif" height="22" width="16"><img
src="sm32yellow.gif" height="22" width="16"><img
src="sm49yellow.gif" height="22" width="16"><img
src="sm57yellow.gif" height="22" width="16">
</td>
<td>
<img src="sm67yellow.gif" height="22" width="16"><img
src="sm111yellow.gif" height="22" width="16"><img
src="sm119yellow.gif" height="22" width="16"><img
src="sm98yellow.gif" height="22" width="16"><img
src="sm111yellow.gif" height="22" width="16"><img
src="sm121yellow.gif" height="22" width="16"><img
src="sm115yellow.gif" height="22" width="16"><img
src="sm32yellow.gif" height="22" width="16"><img
src="sm49yellow.gif" height="22" width="16"><img
src="sm48yellow.gif" height="22" width="16">
</td>
</tr>
Basically, what I'd like to do is pass the text to a function
and have the script COMBINE the gifs to one gif and stream it
back to the browser. This function would return one gif with
that text made up from the single chars.
So the score above would be:
<tr>
<td>
<img src="<$=gif_Combine('Texans 19')>">
</td>
<td>
<img src="<$=gif_Combine('Cowboys 10')>">
</td>
</tr>
How can I do that? Possible? I don't want to use a font because I
want this to look like a scoreboard at a real stadium. I have
created the gifs to look like the individual light sections that make
up the chars.