I didn't want to upload documents online to generate a PDF file, and I also wanted to avoid paying subscriptions for programs that I would use infrequently.
Takes a folder of photos and creates a PDF file from the photos. Each photo takes up a single page, and each page is A4 standardized for regular printing paper.
-
Clone this project:
git clone https://github.com/gcmoony/pdfFun.git
-
Open a terminal and navigate to your project
-
Install dependancies
npm install
-
Add your images to
./assets
-
Run the program via terminal
node ./CreatePDF.js
- [Complete]
Allow program to work with any number of photos - Allow naming of PDF file without modifying source code
- [Complete]
Allow program to enumerate through each photo, regardless of photo name convention - Web interface to allow file upload
- Organization of photos
- Download PDF after generation
Submit an issue, or maybe a pull request. I like ideas!
This project utilizes pdfkit, which is a JavaScript PDF generation library for Node. Please check out the repository here.