https://github.com/ecelis/imagesnatch
Extract images from PDF files with Python
https://github.com/ecelis/imagesnatch
Last synced: about 1 year ago
JSON representation
Extract images from PDF files with Python
- Host: GitHub
- URL: https://github.com/ecelis/imagesnatch
- Owner: ecelis
- License: agpl-3.0
- Created: 2020-09-01T19:36:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-01T22:22:22.000Z (over 5 years ago)
- Last Synced: 2025-02-16T04:44:15.130Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ImageSnatch
Extract images from PDF files with Python
## Development Setup
```
python3 -m venv env
. env/bin/activate
pip3 install -r requirements.txt
```
## Run
```
python3
from image_snatch.converters import toPNG
toPNG("/path/to.pdf")
```