I want to have a GIF-image looping in the background of a game (For example with Gloss Juicy or module Codec.Picture.Gif)
Managed to work with a BMP image like this:
image :: IO Picture
image = loadBMP "image.bmp"
But now I want to do the same with a GIF image:
loadGifFile :: FilePath -> IO Image
loadGifFile = "image.gif"
Can't get it to work.
Thankful for any tip how to do it.