name: netpbm version: 1.0.0 x-revision: 1 license: MIT copyright: 2013 Niklas Hambüchen author: Niklas Hambüchen maintainer: Niklas Hambüchen category: Codec, Graphics build-type: Simple stability: experimental tested-With: GHC==7.4.2 cabal-version: >= 1.10 homepage: https://github.com/nh2/haskell-netpbm bug-Reports: https://github.com/nh2/haskell-netpbm/issues synopsis: Loading PBM, PGM, PPM image files description: This package contains pure Haskell parsers for the netpbm image formats: PBM, PGM and PPM, for both ASCII and binary encodings. . All netpbm image formats are implemented (P1 - P6). . The current implementation parses PPM images at around 10 MB/s on a Core i5-2520M. . CHANGELOG . Version 1.0.0 . * Use storable instead of unboxed vectors to allow easier integration with Ptr based APIs. source-repository head type: git location: git://github.com/nh2/haskell-netpbm.git library -- https://github.com/nh2/haskell-netpbm/issues/3 build-depends: base <4.5 || >= 4.6 exposed-modules: Graphics.Netpbm build-depends: base < 5 , attoparsec >= 0.10 , attoparsec-binary >= 0.2 , bytestring >= 0.9 , storable-record >= 0.0.2.5 , unordered-containers >= 0.1.3.0 , vector >= 0.7 , vector-th-unbox >= 0.2.0.1 hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall test-Suite tests default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Main.hs build-depends: base >= 4 , netpbm , bytestring >= 0.9 , hspec >= 1.3.0.1 , HUnit >= 1.2 , vector >= 0.7 ghc-options: -Wall benchmark bench default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: bench main-is: Bench.hs build-depends: base >= 4 , netpbm , bytestring >= 0.9 , criterion >= 0.6.0.0 ghc-options: -Wall