
9 Jan
2013
9 Jan
'13
4:51 a.m.
Trying to work with images via hsmagic package, use something like this scaleTest :: FilePath -> IO() scaleTest dst = do initializeMagick image <- readImage dst let image' = scaleImage 450 450 image writeImage dst image' but get core dump, when compiling. Types are ok, and path are valid, can it be problem of os or I'm doing something wrong?