-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | An FFI interface to the DevIL library -- -- Provides a very simple interface to the DevIL image library. Provides -- functions readImage and writeImage, which can read and write many -- image formats from/to an RGBA array of values to work with. @package Codec-Image-DevIL @version 0.1 module Codec.Image.DevIL ilInit :: IO () readImage :: FilePath -> IO (UArray (Int, Int, Int) Word8) writeImage :: FilePath -> UArray (Int, Int, Int) Word8 -> IO () -- | 8-bit unsigned integer type data Word8 :: *