Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. readImage :: FilePath -> IO (Either String DynamicImage)

    JuicyPixels Codec.Picture

    Load an image file without even thinking about it, it does everything as decodeImage

  2. readImageWithMetadata :: FilePath -> IO (Either String (DynamicImage, Metadatas))

    JuicyPixels Codec.Picture

    Equivalent to readImage but also providing metadatas.

  3. readJpeg :: FilePath -> IO (Either String DynamicImage)

    JuicyPixels Codec.Picture

    Try to load a jpeg file and decompress. The colorspace is still YCbCr if you want to perform computation on the luma part. You can convert it to RGB using colorSpaceConversion.

  4. readPixel :: (Pixel a, PrimMonad m) => MutableImage (PrimState m) a -> Int -> Int -> m a

    JuicyPixels Codec.Picture

    Same as pixelAt but for mutable images.

  5. readPng :: FilePath -> IO (Either String DynamicImage)

    JuicyPixels Codec.Picture

    Helper function trying to load a png file from a file on disk.

  6. readTGA :: FilePath -> IO (Either String DynamicImage)

    JuicyPixels Codec.Picture

    Try to load a .tga file from disk.

  7. readTiff :: FilePath -> IO (Either String DynamicImage)

    JuicyPixels Codec.Picture

    Helper function trying to load tiff file from a file on disk.

  8. readerIndex :: JpgUnpackerParameter -> {-# UNPACK #-} !Int

    JuicyPixels Codec.Picture.Jpg.Internal.Common

    No documentation available.

  9. readerIndex :: JpgUnpackerParameter -> {-# UNPACK #-} !Int

    JuicyPixels Codec.Picture.Jpg.Internal.Progressive

    No documentation available.

  10. readPackedPixelAt :: forall m px . (Pixel px, PackeablePixel px, Storable (PackedRepresentation px), PrimMonad m) => MutableImage (PrimState m) px -> Int -> m px

    JuicyPixels Codec.Picture.Types

    Read a packeable pixel from an image. Equivalent to unsafeReadPixel

Page 118 of many | Previous | Next