Hello, I am sorry, this is not a granoo bug, so I have no direct solution.
Howevere, here are two tricks to do what you want.
1/ for a single image, save it as *.png file with the granoo-viewer and convert it with your favorite image processing tool. I use imagemagick with the following cmd line :
convert yourfile.png yourfile.gif
2/ for multiple images, save them as *.png files with the granoo-viewer (with the record button). Then, you can make an animated gif with ffmpeg thanks to the following cmd :
ffmpeg -i image-%d.png output.gif
Cheers, Damien