1

How can I control the speed of the animation? I would like the frames to pass one value per second, in others words, one frame per second. Is there any function that controls this output?

g = Graphics[Table[{ Text[ Style[#, FontSize -> 40, Bold, Red], {0, 0}]}, 1]] & /@ Range[10]   
  Export["C:\\Users\\JohnPeter\\Desktop\\Count.gif", g]

enter image description here

JPeter
  • 1,089
  • 6
  • 19

1 Answers1

3

Based on the JasonB comment

One frame in $0,5sec$:

g = Graphics[ Table[{Text[Style[#, FontSize -> 40, Bold, Red], {0, 0}]}, 1]] & /@ Range[10] Export["C:\\Users\\Leandro\\Documents\\Wolfram Mathematica\\1 - \ NB\\anima.gif", g, "DisplayDurations" -> 0.5]

enter image description here

One frame in $1sec$:

g = Graphics[ Table[{Text[Style[#, FontSize -> 40, Bold, Red], {0, 0}]}, 1]] & /@ Range[10] Export["C:\\Users\\Leandro\\Documents\\Wolfram Mathematica\\1 - \ NB\\anima.gif", g, "DisplayDurations" -> 1] 

enter image description here

LCarvalho
  • 9,233
  • 4
  • 40
  • 96