{-# LANGUAGE FlexibleContexts #-} module Graphics.Image.Interface.Vector ( -- * Construction makeImage, fromUnboxedVector, toUnboxedVector, -- * IO readImageY, readImageYA, readImageRGB, readImageRGBA, -- * Representation VU(..), ) where import Graphics.Image.IO import Graphics.Image.Interface import Graphics.Image.Interface.Vector.Unboxed import Graphics.Image.ColorSpace -- | Create an image with 'VU' (Vector Unboxed) representation and pixels of 'Double' -- precision. Note, that for 'Double' precision pixels it is essential to keep values -- normalized in the @[0, 1]@ range in order for an image to be written to file -- properly. -- -- >>> let grad_gray = makeImage (200, 200) (\(i, j) -> PixelY (fromIntegral i)/200 * (fromIntegral j)/200) -- -- Because all 'Pixel's and 'Image's are installed into 'Num', above is equivalent to: -- -- >>> let grad_gray = makeImage (200, 200) (\(i, j) -> PixelY $ fromIntegral (i*j)) / (200*200) -- >>> writeImage "images/grad_gray.png" grad_gray -- -- Creating color images is just as easy. -- -- >>> let grad_color = makeImage (200, 200) (\(i, j) -> PixelRGB (fromIntegral i) (fromIntegral j) (fromIntegral (i + j))) / 400 -- >>> writeImage "images/grad_color.png" grad_color -- -- <> <> -- makeImage :: Array VU cs Double => (Int, Int) -- ^ (@m@ rows, @n@ columns) - dimensions of a new image. -> ((Int, Int) -> Pixel cs Double) -- ^ A function that takes (@i@-th row, and @j@-th column) as an argument -- and returns a pixel for that location. -> Image VU cs Double makeImage = make {-# INLINE makeImage #-} -- | Read luma (brightness) of an image. readImageY :: FilePath -> IO (Image VU Y Double) readImageY = fmap (either error id) . readImage {-# INLINE readImageY #-} -- | Read image as luma with 'Alpha' channel. readImageYA :: FilePath -> IO (Image VU YA Double) readImageYA = fmap (either error id) . readImage {-# INLINE readImageYA #-} -- | Read image in RGB colorspace. readImageRGB :: FilePath -> IO (Image VU RGB Double) readImageRGB = fmap (either error id) . readImage {-# INLINE readImageRGB #-} -- | Read image in RGB colorspace with 'Alpha' channel. readImageRGBA :: FilePath -> IO (Image VU RGBA Double) readImageRGBA = fmap (either error id) . readImage {-# INLINE readImageRGBA #-}