https://github.com/jabraham17/pdfgen
https://github.com/jabraham17/pdfgen
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jabraham17/pdfgen
- Owner: jabraham17
- Created: 2020-02-05T22:27:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-03T22:35:22.000Z (over 1 year ago)
- Last Synced: 2025-02-06T06:27:32.585Z (4 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PDFGen
Generate a pdf that contains series of images from a folder.
## Usage
1. Place all the images you want in the pdf in a folder
2. Name the folder what you want the name of the pdf to be
3. Run the script, specifying necessary parameters## Script
The script takes two arguments
- --dir -> the directory to pull the images from
- --ext -> the file extension to filter for
Exact usage can be seen by running the script with '--help' or '-h'## Installation
This script was created for OSX and has only been tested on OSX.
Use on other platforms at your own risk.1. Download most recent release [here][https://github.com/jacob-abraham/PDFGen/releases/download/1.0/pdfgen]
2. Open a command prompt and make the file executable (`chmod +x pdfgen`)
3. If `~/bin` does not exist, create it (`mkdir ~/bin`)
4. Move `pdfgen` to bin (`mv pdfgen ~/bin/pdfgen`)
5. On OSX, if using zsh open `~/.zshrc` or if on bash open `~/.bash_profile`. If on another shell use the appropriate file
6. Add the following line to the file `export PATH=$PATH:~/bin`
7. Save the file and relaunch the shell