JuicyPixels-1.2: Picture loading/serialization (in png, jpeg and bitmap)

Safe HaskellSafe-Infered

Codec.Picture.Png

Contents

Description

Module used for loading & writing 'Portable Network Graphics' (PNG) files. The API has two layers, the high level, which load the image without looking deeply about it and the low level, allowing access to data chunks contained in the PNG image.

For general use, please use decodePng function.

The loader has been validated against the pngsuite (http:www.libpng.orgpubpng/pngsuite.html)

Synopsis

High level functions

class PngSavable a whereSource

Encode an image into a png if possible.

Methods

encodePng :: Image a -> ByteStringSource

Transform an image into a png encoded bytestring, ready to be writte as a file.

decodePng :: ByteString -> Either String DynamicImageSource

Transform a raw png image to an image, without modifying the underlying pixel type. If the image is greyscale and < 8 bits, a transformation to RGBA8 is performed. This should change in the future. The resulting image let you manage the pixel types.

This function can output the following pixel types :

  • PixelY8
  • PixelYA8
  • PixelRGB8
  • PixelRGBA8

writePng :: PngSavable pixel => FilePath -> Image pixel -> IO ()Source

Helper function to directly write an image as a png on disk.

encodeDynamicPng :: DynamicImage -> Either String ByteStringSource

Encode a dynamic image in bmp if possible, supported pixel type are :

  • RGB8
  • RGBA8
  • Y8

writeDynamicPng :: FilePath -> DynamicImage -> IO (Either String Bool)Source

Write a dynamic image in a .png image file if possible. The same restriction as encodeDynamicPng apply.