I'm making a title screen for a class project and I've downloaded a bunch of gifs to show. I have a timer on it that just ticks on a constant interval. I want the picture to change when the gif is over. I've been at it forever and still haven't found a way to do it. Thanks for the help
Asked
Active
Viewed 72 times
0
-
2Show us the code you have and what error you're getting or what specifically is not behaving as expected. – MrGadget Feb 25 '16 at 04:50
-
Post some examples of what you've tried so far. You say that you have a timer on a constant interval, but you want the picture to change when the gif has run its cycle. Does that mean each gif runs the same cycle in unison with your timer? – Ageonix Feb 25 '16 at 04:51
1 Answers
0
The only ways I can think of to do this would be to either determine the length of each .gif prior to build time using a tool like ImageMagick (and feed that into your application). Or to find some interface that allows you to interact at a low level with the .gif format. In my opinion, the first is more feasible, but pretty complicated, the second is less likely to work out. To my knowledge, there's no low-level interface (similar to what you describe) with the .gif format in VB.