Hoogle Search
Within LTS Haskell 24.25 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
JuicyPixels Codec.Picture Type alias for 16bit greyscale pixels.
-
JuicyPixels Codec.Picture Type alias for 32bit greyscale pixels.
-
JuicyPixels Codec.Picture Type alias for 8bit greyscale pixels. For simplicity, greyscale pixels use plain numbers instead of a separate type.
-
JuicyPixels Codec.Picture Pixel type storing 16bit cyan, magenta, yellow and black (CMYK) information. Values are stored in the following order:
- Cyan
- Magenta
- Yellow
- Black
PixelCMYK16 :: Pixel16 -> Pixel16 -> Pixel16 -> Pixel16 -> PixelCMYK16JuicyPixels Codec.Picture No documentation available.
-
JuicyPixels Codec.Picture Pixel type storing 8bit cyan, magenta, yellow and black (CMYK) information. Values are stored in the following order:
- Cyan
- Magenta
- Yellow
- Black
PixelCMYK8 :: Pixel8 -> Pixel8 -> Pixel8 -> Pixel8 -> PixelCMYK8JuicyPixels Codec.Picture No documentation available.
-
JuicyPixels Codec.Picture Type alias for 32bit floating point greyscale pixels. The standard bounded value range is mapped to the closed interval [0,1] i.e.
map promotePixel [0, 1 .. 255 :: Pixel8] == [0/255, 1/255 .. 1.0 :: PixelF]
-
JuicyPixels Codec.Picture Pixel type storing 16bit red, green and blue (RGB) information. Values are stored in the following order:
- Red
- Green
- Blue
PixelRGB16 :: Pixel16 -> Pixel16 -> Pixel16 -> PixelRGB16JuicyPixels Codec.Picture No documentation available.