Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
pattern
PixelHSLA :: e -> e -> e -> e -> Pixel (Alpha HSL) eColor Graphics.Pixel Constructor for a pixel with HSL color model and Alpha channel.
pattern
PixelHSV :: e -> e -> e -> Pixel HSV eColor Graphics.Pixel Constructor for Pixel with HSV color model.
pattern
PixelHSVA :: e -> e -> e -> e -> Pixel (Alpha HSV) eColor Graphics.Pixel Constructor for a pixel with HSV color model and Alpha channel.
pattern
PixelRGB :: e -> e -> e -> Pixel RGB eColor Graphics.Pixel Constructor for a pixel with RGB color model.
pattern
PixelRGBA :: e -> e -> e -> e -> Pixel (Alpha RGB) eColor Graphics.Pixel Constructor for a pixel with RGB color model and Alpha channel.
pattern
PixelX :: e -> Pixel X eColor Graphics.Pixel Constructor for a grayscale pixel with single channel.
pattern
PixelXA :: e -> e -> Pixel (Alpha X) eColor Graphics.Pixel Constructor for a grayscale pixel with a transparency channel.
pattern
PixelYCbCr :: e -> e -> e -> Pixel YCbCr eColor Graphics.Pixel Constructor for a pixel with YCbCr color model.
pattern
PixelYCbCrA :: e -> e -> e -> e -> Pixel (Alpha YCbCr) eColor Graphics.Pixel Constructor for a pixel with YCbCr color model and Alpha channel.
-
Color Graphics.Pixel.ColorSpace Digital imaging is one of the most common places for a color to be used in. The smallest element in any image is a pixel, which is defined by its color.