Photography Forums  

Go Back   Photography Forums > Software > Photoshop Tutorials

How to create animated GIF with captions?

Reply
 
Thread Tools Display Modes
  #1  
Old 06-10-2008, 12:27 PM
Default How to create animated GIF with captions?



Hi,

I would like to create a GIF file which appears as a slideshow of
multiple images with a fade-in effect. On image would gradually fade
and tunr into the next image. Also, I need a caption to appear in
small font at the bottom and outside the image. Is there a tool
(online or desktop) to do this?

Thanks,
Yash


Yashgt
Reply With Quote
  #2  
Old 06-10-2008, 02:02 PM
Richard Heathfield
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?

Yashgt said:

> Hi,
>
> I would like to create a GIF file which appears as a slideshow of
> multiple images with a fade-in effect. On image would gradually fade
> and tunr into the next image. Also, I need a caption to appear in
> small font at the bottom and outside the image. Is there a tool
> (online or desktop) to do this?


The GIMP can do it. So can ImageMagick. Both are free.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Reply With Quote
  #3  
Old 06-11-2008, 12:31 AM
Rowley
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?

Why GIF? Just curious... would think that SWF would be a better format.

Martin

Yashgt wrote:

> Hi,
>
> I would like to create a GIF file which appears as a slideshow of
> multiple images with a fade-in effect. On image would gradually fade
> and tunr into the next image. Also, I need a caption to appear in
> small font at the bottom and outside the image. Is there a tool
> (online or desktop) to do this?
>
> Thanks,
> Yash

Reply With Quote
  #4  
Old 06-11-2008, 06:03 AM
Richard Heathfield
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?

Rowley said:

> Why GIF? Just curious... would think that SWF would be a better format.


Well, I'm not the OP, but I would guess he is swayed by the fact that
animated GIFs have wide browser support.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Reply With Quote
  #5  
Old 06-11-2008, 12:12 PM
Rowley
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?

I guess that's true.... and I hear a lot of people use them on their
MySpace pages....

Martin

Richard Heathfield wrote:
> Rowley said:
>
>
>>Why GIF? Just curious... would think that SWF would be a better format.

>
>
> Well, I'm not the OP, but I would guess he is swayed by the fact that
> animated GIFs have wide browser support.
>

Reply With Quote
  #6  
Old 06-11-2008, 01:02 PM
Yashgt
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?

I have chosen GIF for browser compatibility and also because I do not
have any experience with SWF.

ImageMagick suggested by Richard is the tool I was looking for. I can
build a script and specify the files to be used as the constituents of
the GIF. I can then change it when I want to change the GIF.

Trouble is that the syntax appears too complicated. If anyone can help
me with a sample, that will be great. Otherwise I will try and figure
it out. What I want to do is:
- specify 4 images
- specify 4 strings that act as their captions
- create a gif such that when one image transitions into another,
there is fade-in effect
- the corresponding caption appears for each image

Thanks,
Yash

On Jun 11, 4:12*pm, Rowley <industry3dREM...@yahoo.com> wrote:
> I guess that's true.... and I hear a lot of people use them on their
> MySpace pages....
>
> Martin
>
> Richard Heathfield wrote:
> > Rowley said:

>
> >>Why GIF? Just curious... would think that SWF would be a better format.

>
> > Well, I'm not the OP, but I would guess he is swayed by the fact that
> > animated GIFs have wide browser support.


Reply With Quote
  #7  
Old 06-11-2008, 01:22 PM
Richard Heathfield
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?

Yashgt said:

> I have chosen GIF for browser compatibility and also because I do not
> have any experience with SWF.
>
> ImageMagick suggested by Richard is the tool I was looking for. I can
> build a script and specify the files to be used as the constituents of
> the GIF. I can then change it when I want to change the GIF.
>
> Trouble is that the syntax appears too complicated.


ImageMagick? You're kidding! Let's say you have half a dozen bitmapped images,
named frame1.bmp through frame6.bmp (no, you don't have to use those names!).

You do this:

convert *.bmp final.gif

Where's the complication? :-)

> - create a gif such that when one image transitions into another,
> there is fade-in effect


For this, you'll need to do a bit of alpha-blending. Not difficult. I actually
wrote a cross-fading program not so long ago, for precisely this purpose. It
takes a set of .bmp files and a tween rate, and produces bitmap frames that
fade from A to B, B to C, C to ..., etc, ... to Z, and Z back to A again.
ImageMagick then takes the strain of merging them together into a GIF.

(And before you ask, no, you can't use my cross-fader, unless you're prepared
to part with some cash, which strikes me as being rather unlikely. But it
really isn't that difficult to write your own. If I can do it...)

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Reply With Quote
  #8  
Old 06-11-2008, 01:33 PM
Yashgt
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?

Thanks a ton. That was encouraging. Just that having to figure out the
options ans switches worries me.

>
> ImageMagick? You're kidding! Let's say you have half a dozen bitmapped images,
> named frame1.bmp through frame6.bmp (no, you don't have to use those names!).
>
> You do this:
>
> convert *.bmp final.gif
>
> Where's the complication? :-)
>
> > - create a gif such that when one image transitions into another,
> > there is fade-in effect

>
> For this, you'll need to do a bit of alpha-blending. Not difficult. I actually
> wrote a cross-fading program not so long ago, for precisely this purpose. It
> takes a set of .bmp files and a tween rate, and produces bitmap frames that
> fade from A to B, B to C, C to ..., etc, ... to Z, and Z back to A again.
> ImageMagick then takes the strain of merging them together into a GIF.
>
> (And before you ask, no, you can't use my cross-fader, unless you're prepared
> to part with some cash, which strikes me as being rather unlikely. But it
> really isn't that difficult to write your own. If I can do it...)
>
> --
> Richard Heathfield <http://www.cpax.org.uk>
> Email: -http://www. +rjh@
> Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
> "Usenet is a strange place" - dmr 29 July 1999


Reply With Quote
  #9  
Old 06-11-2008, 07:37 PM
KatWoman
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?


"Yashgt" <(E-Mail Removed)> wrote in message
news:37ee6a6c-e340-440a-9733-(E-Mail Removed)...
> Hi,
>
> I would like to create a GIF file which appears as a slideshow of
> multiple images with a fade-in effect. On image would gradually fade
> and tunr into the next image. Also, I need a caption to appear in
> small font at the bottom and outside the image. Is there a tool
> (online or desktop) to do this?
>
> Thanks,
> Yash



If you have Photoshop?? it has an animation creator with tweening choices,
etc.

window>animation palette

place images into frames, specify time on screen, tween choices

then

save for web when done>>> select gif in drop down


Reply With Quote
  #10  
Old 06-11-2008, 08:31 PM
JD
Guest
 
Posts: n/a
Default Re: How to create animated GIF with captions?

KatWoman wrote:
> "Yashgt" <(E-Mail Removed)> wrote in message
> news:37ee6a6c-e340-440a-9733-(E-Mail Removed)...
>> Hi,
>>
>> I would like to create a GIF file which appears as a slideshow of
>> multiple images with a fade-in effect. On image would gradually fade
>> and tunr into the next image. Also, I need a caption to appear in
>> small font at the bottom and outside the image. Is there a tool
>> (online or desktop) to do this?
>>
>> Thanks,
>> Yash

>
>
> If you have Photoshop?? it has an animation creator with tweening choices,
> etc.
>
> window>animation palette
>
> place images into frames, specify time on screen, tween choices
>
> then
>
> save for web when done>>> select gif in drop down
>
>

How does one add new images into frames? All I can get it to do is copy
the original image?



--
JD..
Reply With Quote
Reply

Tags
animated, captions, create, gif

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 08:56 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.