JustinTheWhale / PDF-Dark-Mode

Converts PDF's to have a grey background to be easier on the eyes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PDF Dark Mode

About

NOTE: This project is going under significant changes! Stay tuned for updates!

Python program that converts the white-space in PDF files to have a grey background.

Works best with non-handwritten PDF's and PDF's without any images.

Tested and working on Python 3.6+.

Installation

Windows

macOS

  • Mac users will have to install poppler for Mac. You can do so with this homebrew formula.

Linux

  • Most linux distros already have pdftoppm installed. If not, you can check your package manager on how to install poppler-utils.

Then

Using pip

  • pip install PdfDarkMode

Or

  • git clone https://github.com/JustinTheWhale/PDF-Dark-Mode.git

  • cd PDF-Dark-Mode

  • pip install -r requirements.txt

Usage

from PdfDarkMode.darkmode import convert

convert("example.pdf")

Additionally, you can pass a list of PDF files instead of just one string like so:

from PdfDarkMode.darkmode import convert

convert(["example.pdf", "example2.pdf", ...])

You can also run it directly from the command line:

python darkmode.py example.pdf example2.pdf ...

Example

About

Converts PDF's to have a grey background to be easier on the eyes

License:MIT License


Languages

Language:Python 100.0%