@hackage / pdf-toolbox-core

A collection of tools for processing PDF files.

Latest0.1.3

About

Metadata

  • Last updated , by YurasShumovich
  • License BSD-3-Clause
  • Maintained by: Yuras Shumovich <shumovichy@gmail.com>

  • Lottery factor: 0

Links

Installation

Package Flags

Use the -f option with cabal commands to enable flags

    zlib (on by default)

    Enable deflate support via zlib; requires that the Zlib flag be set on io-streams

Readme

Low level tools for processing PDF files.

Level of abstraction: cross reference, trailer, indirect object, object

The API is based on random access input streams, and is designed to be memory efficient. We don't need to parse the entire PDF file and store it in memory when you need just one page or two. Usually it is also leads to time efficiency, but we don't try optimize performance by e.g. maintaining xref or object cache. Higher level layers should take care of it.

The library is low level. It may mean that you need to be familiar with PDF file internals to actually use it.