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.

  1. type Pixel32 = Word32

    JuicyPixels Codec.Picture.Types

    Type alias for 32bit greyscale pixels.

  2. type Pixel8 = Word8

    JuicyPixels Codec.Picture.Types

    Type alias for 8bit greyscale pixels. For simplicity, greyscale pixels use plain numbers instead of a separate type.

  3. data PixelCMYK16

    JuicyPixels Codec.Picture.Types

    Pixel type storing 16bit cyan, magenta, yellow and black (CMYK) information. Values are stored in the following order:

    • Cyan
    • Magenta
    • Yellow
    • Black

  4. PixelCMYK16 :: Pixel16 -> Pixel16 -> Pixel16 -> Pixel16 -> PixelCMYK16

    JuicyPixels Codec.Picture.Types

    No documentation available.

  5. data PixelCMYK8

    JuicyPixels Codec.Picture.Types

    Pixel type storing 8bit cyan, magenta, yellow and black (CMYK) information. Values are stored in the following order:

    • Cyan
    • Magenta
    • Yellow
    • Black

  6. PixelCMYK8 :: Pixel8 -> Pixel8 -> Pixel8 -> Pixel8 -> PixelCMYK8

    JuicyPixels Codec.Picture.Types

    No documentation available.

  7. type PixelF = Float

    JuicyPixels Codec.Picture.Types

    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]
    

  8. data PixelRGB16

    JuicyPixels Codec.Picture.Types

    Pixel type storing 16bit red, green and blue (RGB) information. Values are stored in the following order:

    • Red
    • Green
    • Blue

  9. PixelRGB16 :: Pixel16 -> Pixel16 -> Pixel16 -> PixelRGB16

    JuicyPixels Codec.Picture.Types

    No documentation available.

  10. data PixelRGB8

    JuicyPixels Codec.Picture.Types

    Classic pixel type storing 8bit red, green and blue (RGB) information. Values are stored in the following order:

    • Red
    • Green
    • Blue

Page 106 of many | Previous | Next