Desktop software
Open PDF Studio
A free, open-source PDF workbench for Windows.
What it is
Open PDF Studio is a free, open-source PDF workbench for Windows. Version 2.0 has a familiar user interface: a menu bar, toolbar, and tabs over a continuous reading view, a navigation pane, and twelve task-oriented tools — page organizing, comments, form fill and digital signatures, form preparation, redaction, scan and OCR, document compare, encryption, optimization, repair, watermarking, and text export. The keyboard shortcuts match the industry-standard editor's published table, so existing muscle memory works. There are no ads, no telemetry, and no upsells.
Every whole-file operation also works from the command line — the same engine runs headless with identical results, so batch work is scriptable.
Why I built it
PDF tooling on Windows is usually a subscription, a web service that wants your documents uploaded, or a free utility that does exactly one thing. I wanted the full everyday workflow — read, organize, sign, redact, compress — as ordinary desktop software that respects the machine it runs on. It started as a smaller tool called Spectra PDF; version 2.0 is the full workbench.
How it works
Tauri v2 with a React front end. An embedded Python engine does the document work (pikepdf, pdfminer.six), and a vendored upstream Ghostscript build handles compression, color conversion, PDF/A, and printing. The reading view virtualizes rendering, so thousand-page documents scroll smoothly. Page edits stage in memory and commit atomically, with multi-level undo across both staged edits and applied operations. It also supports .pdfx — Alexandros Gounis's open format that stores several documents in one ordinary, fully compatible PDF, which reopens as separate strips. Good idea, credited.
It also installs like software an endpoint administrator would want to deploy: an NSIS installer with silent modes and enterprise policy support, file associations, Explorer context-menu entries, and auto-update.
Behaving like the real thing
The hard part was meeting expectations people already have. The keyboard map is checked against the industry-standard editor's published shortcut table. Existing PDF annotations import as editable objects, not baked pixels. Redaction actually removes content instead of drawing over it. OCR has to make scanned pages both searchable and selectable. Repair means real salvage — three tiers, down to recovering individual pages from a damaged file. Each of those is a place where a shortcut would show.
Status
Version 2.0.0 shipped in July 2026 — MIT-licensed, on GitHub, with installers on the releases page. The bundled Ghostscript is upstream AGPL-3.0, vendored unmodified.