Converts PDF to TIFF
Windows-only utility that converts PDFs into a single multipage TIFF for document imaging workflows.
- Drag & drop: drop a PDF onto
converter.exe - Virtual-printer workflow:
converter.exe --latest - Output TIFF:
- 300 DPI (PixelsPerInch metadata)
- 1-bit bilevel (fax/OCR safe)
- CCITT Group 4 compression (MODI compatible)
- Multipage TIFF (single
.tif)
- Opens the result in Microsoft Office Document Imaging (MODI) if installed, otherwise default Windows TIFF viewer
- No folder watchers; only processes files explicitly dropped or requested with
--latest
Place these next to the EXE: converter.exe
magick\= portable ImageMagick folder (must containmagick.exeand its supporting files)gs\= Ghostscript folder (must containbin\gswin64c.exeandlib\)
- Drag a
.pdfontoconverter.exe - A multipage TIFF is written next to the PDF (same filename,
.tif) - TIFF opens in MODI (or default viewer)
-
Configure a virtual PDF printer (PDFCreator or Bullzip) to auto-save PDFs to:
C:\WarehouseDrop\PrintToTiff\ -
Run:
converter.exe --latest
This will:
- pick the newest PDF in the drop folder that does not already have a matching
.tif - wait briefly for the PDF to finish writing
- convert to TIFF
- open the TIFF
- Windows “Microsoft Print to PDF” cannot auto-save; it will always prompt for a file name. It can still be used if you manually save into the drop folder.
- If
--latestreports “No unprocessed PDFs found”, it means every PDF in the folder already has a.tifnext to it.
Create venv, install PyInstaller, build:
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -U pip pyinstaller
python -m PyInstaller --clean --noconfirm --onefile --windowed --name converter converter.py