Skip to content

Commit 20bd9d6

Browse files
committed
Small big fix, change directory of input images
1 parent b4dbbaf commit 20bd9d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/imagesToGif.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import ImageOutput
44
import System.IO
55

66
main :: IO()
7-
main = createGifColor =<< sequence[readImage ("./animation/frame"++ show i ++".png") >>= decode | i <- [1..10]]
7+
main = createGifColor =<< sequence[readImage ("./out/frame"++ show i ++".png") >>= decode | i <- [1..10]]
88

99
decode :: Either String DynamicImage -> IO (Image PixelRGB8)
1010
decode (Right (ImageRGB8 image)) = return image

0 commit comments

Comments
 (0)