Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need some help on creating an .gif animation script

Status
Not open for further replies.

Kruzer

Programmer
Jun 16, 2000
117
US
I'm using ImageMagick currently and I can animate gifs by cycling through three individual graphics, but the problem is now I need to write a routine that animates the text with in the graphic.

current annimation

$image->Read(qw(/opt/apache/images/619764_sbta.gif /opt/apache/images/617690_sbta.gif /opt/apache/images/$img));
$image->Set(delay=>100);
$image->Set(disposal=>1);


What I need-> Display the company name and phone number, next frame show the slogan of the company...Simple

There is a method I can use to add text to the garphic - Annotate

$image->Annotate(font=>$company_font, text=>$company, pen=>$company_color, gravity=>'North', 'y'=>$cCord, pointsize=>$company_size);

Anyone know of some website with possible scripts or do you have a script on accomplishing the above?


[sig]<p>Dano<br><a href=mailto:dskryzer@hotmail.com>dskryzer@hotmail.com</a><br><a href= </a><br>What's your major malfunction[/sig]
 
Create a GIF89 animation using an external program such as GifAnimator or ImageReady and upload that to your site. Much easier that way.

Or even JavaScript.
[sig]<p> Sincerely,<br><a href=mailto: > </a><br><a href= Anderson</a><br>CEO, Order amid Chaos, Inc.<br>
[/sig]
 
I would love to create a GIF89 and uploaded this, but this animation piece is part of a whole grander piece that allows people to create graphics on the fly. I'll look into JavaScript...

Thanks, [sig]<p>Dano<br><a href=mailto:dskryzer@hotmail.com>dskryzer@hotmail.com</a><br><a href= </a><br>What's your major malfunction[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top