tags:

views:

44

answers:

1

Is there any way to control the speed of animation of a GIF image in C#?

A: 

At the lowest level, you'll need to alter the "delay" property of the GIF, a lower number will speed it up while a higher number will slow it down. Regardless of what image manipulation library you're using, that's what will need to happen.

treefrog