oelin / straw

Extract images and other streams from PDF files 🐍.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Straw

Extract images and other streams from PDF files 🐍.

Introduction

This library is dedicated to implementing extraction procedures for binary streams in PDF files. Currently this only includes images, however we hope to expand to other streams, and indeed other file formats.

Installation

$ pip install straw

API

>>> import straw

>>> images = straw.extract_images('./file.pdf')

The extract_images method returns an array of image instances, each having a data attribute which holds the raw binary data of the image. The image can be saved to disk by simply writing this data to a file.

Future

  • Pillow integration
  • Support for stream formats other than images
  • Support for other file formats with embedded streams.

About

Extract images and other streams from PDF files 🐍.

License:MIT License


Languages

Language:Python 100.0%