Skip to content

Latest commit

 

History

History
61 lines (37 loc) · 1.47 KB

README.md

File metadata and controls

61 lines (37 loc) · 1.47 KB

makePDF or img-to-pdf

PyPI version

This is a simple script to convert all images or pdfs in a directory to a single pdf file.

Usage

makePDF [operation] [flags]

Operations

  • img: Convert all images in a directory to a single PDF.
  • pdf: Convert all PDFs in a directory to a single PDF.
  • help: Display help information.

Flags

  • -name: The name of the output file.
  • -in or --input: The input directory.
  • -out or --output: The output directory.

Example

Merge images from the directory input_images into a single PDF named output.pdf in the directory example/output_pdf:

makePDF img -in input_images -out example/output_pdf -name output.pdf

Merge all pdf in the current directory into a single PDF in the current directory:

makePDF.py pdf

Installation

pip install img-to-pdf

License

MIT

Motivation

I created this script in an afternoon because I was not having a fun time converting images to PDFs for class. Automator has a good solution for Mac users, but I was more comfortable in the terminal.

Room for Improvement

  • Add support for other file types.
  • Further Optimization