A plain-English look at how KillerPDF works under the hood, with the deeper detail kept for the nerds who want it.
Tech stack
KillerPDF is a native Windows application built on modern .NET. There is no Electron and no browser engine. The installed edition uses the .NET 10 Desktop Runtime; the portable edition carries its own runtime. Each major subsystem has a deliberately narrow job:
| Component | Library |
|---|---|
| UI | WPF on .NET 10 for Windows, x64, with custom window chrome |
| Rendering | PDFium via Docnet.Core 2.6 - every page bitmap and thumbnail |
| Text | PdfPig 0.1.15 - search, selection, font sniffing |
| Document engine | The KillerPDF.Engine - parsing, authoring, preservation, page operations, forms, annotations, encryption, signatures, PDF 2.0, PDF/A and PDF/UA |
| Signing | The KillerPDF.Engine - byte-preserving detached CMS signatures, certification permissions, field locks and verification |
| OCR | Tesseract 5.2 - native libs embedded, language packs on demand |
| Packaging | A compact framework-dependent installer and a self-contained portable launcher, each carrying a compressed, SHA-256-verified payload |
Install, folders & data
KillerPDF ships in two forms. The compact installer is the standard download and supports per-user or all-users installation. The larger portable edition contains its own runtime and runs from anywhere without installation.
What the installer does
The installer verifies and extracts the framework-dependent application to %LOCALAPPDATA%\Programs\KillerPDF\, or to %ProgramFiles%\KillerPDF\ after an elevation prompt for all users. Installed shortcuts launch KillerPDF.App.exe directly. The portable edition verifies and extracts its self-contained payload for the current run. Installed copies register the PDF handler and killerpdf: protocol at the matching scope and create an Add/Remove Programs entry.
Where things live
| Location | Holds |
|---|---|
%LOCALAPPDATA%\Programs\KillerPDF\ | the installed application payload, including KillerPDF.App.exe and its native and managed dependencies |
%LOCALAPPDATA%\KillerPDF\Temp\ | session working files - decrypted copies, repaired files, rotation snapshots |
%LOCALAPPDATA%\KillerPDF\tessdata\ | OCR language data (see below) |
%LOCALAPPDATA%\KillerPDF\ocr\<version>\x64\ | OCR native engine libraries |
%LOCALAPPDATA%\KillerPDF\Logs\ | crash logs |
HKCU\Software\KillerPDF\Settings | your settings - in the registry, not a file |
Everything sits under %LOCALAPPDATA% on purpose: it is per-user (no admin), user-private, and not indexed by Windows Search - so temporary copies of your documents never surface in search or another account.
Where OCR files go
OCR is bundled in the exe but unpacks on first use. The Tesseract native libraries extract to a per-version cache at %LOCALAPPDATA%\KillerPDF\ocr\<version>\x64\ (version-stamped, so an update gets fresh binaries). The language data lives in %LOCALAPPDATA%\KillerPDF\tessdata\: English ships inside the exe and is written there the first time you OCR, and any extra languages you pick are downloaded into that same folder. It is version-independent, so downloaded languages survive app updates. Both are read from these locations on every OCR run.
Temp files
Working files are written as killerpdf_<tag>_<guid>.pdf and tracked for the session. They are deleted when you close the app; anything a crash leaves behind is swept on the next launch (both the current Temp folder and the legacy %TEMP% location). Files still open in another instance are skipped and cleared later.
Clear all data
The Clear all Data link in the About window wipes everything KillerPDF has stored: the registry settings, the downloaded OCR languages and native cache, and the temp folder. It is best-effort - anything locked by the running session (a loaded native DLL, say) is skipped and clears on the next restart. Your actual PDFs are never touched.
Architecture
MainWindow is a composed application shell rather than one giant code-behind. Its partials under Shell/ own the shared toolbar, sidebar, dialogs and application workflows, while each document pane is a reusable PdfViewer with independent tabs, view state, render surfaces, thumbnails and interaction state. Two viewer instances create split pane without opening a second window. Thin host adapters connect the shell and viewers; reusable application policy lives under Services/; focused controllers live under Features/; and all PDF structure and serialization crosses the independent KillerPDF.Engine boundary.
Source size
As measured from the current 1.8.2 development tree, KillerPDF contains 418 C# files and 139,519 physical source lines. Production code accounts for 314 files and 100,609 lines: 155 application files (49,711 lines), 151 engine-library files (47,792 lines), two corpus-runner files (2,200 lines), and six packaging files (906 lines). The remaining 104 files and 38,910 lines are application and engine tests. Generated build output is excluded.
Two render pipelines
KillerPDF has a primary-page renderer (RenderPage) and a multi-page streaming renderer used by Continuous, Grid and Two-Page layouts. Single view uses the primary tile; multi-page layouts create per-page tiles and replace their bitmaps progressively as work completes. RenderPage is deliberately switched off during Continuous so a primary-page repaint cannot clear the live multi-page overlay map.
Per-tab sessions & an LRU cache
Each open document is a DocumentSession that remembers its own zoom, fit and view mode, grid columns, current tool, page, and scroll position, along with its per-document data (annotations, page sizes, rotations, form values, and undo history). Switching tabs simply points the app back at that session. Each session also keeps a cache of already-drawn page images, so flipping back to a recent tab is instant and skips the renderer entirely. To keep memory bounded, only the three most recently used tabs retain caches; each tab has an approximately 160 MB budget, keeps at least six useful pages where possible, and has a hard cap of 48 cached entries.
Canvas & overlay maps
When KillerPDF displays a page, it stacks two things on top of each other: the page itself, drawn as a flat image, and a clear sheet sitting directly over it. That clear sheet is called an overlay, and it is where everything you add to a page (highlights, text boxes, drawn ink, signatures) is painted. The image underneath is never altered; your marks live on the overlay above it. A page's image-and-overlay pair is referred to as a tile.
The wrinkle is that KillerPDF has four ways of showing pages: one at a time, a continuous scroll through the whole document, a grid of pages, and two pages side by side. Each of those lays pages out differently, so each page you can see needs its own overlay in its own place. There is no single fixed sheet to draw on. Instead KillerPDF keeps a lookup table that takes a page number and hands back that page's current overlay. In the code this table is named _pages, and it is the one place the app trusts: every time it repaints a page's annotations, it asks this table which overlay to use and draws there.
A second table, _continuousCanvases, tracks the overlays for whichever multi-page layout happens to be on screen (the continuous scroll, the grid, or the two-page view). When KillerPDF builds a new overlay it registers it in both tables at once, through a helper named WirePageOverlay, so the two can never disagree about where a page lives.
One rule keeps the whole thing from breaking. The single-page style of layout is rebuilt by a routine that begins by throwing away the multi-page overlays. If that routine were allowed to run while the continuous scroll was showing, it would empty the lookup table, and every page would fall back to pointing at the hidden single-page tile. Your annotations would then be painted off-screen, out of sight, until you switched view modes. To prevent that, the routine is blocked from doing anything at all while the continuous scroll is active.
RenderPage) begins by clearing the multi-page overlays, which empties the page-to-overlay table. It is therefore switched off while the continuous scroll is on screen. If it ran there, every overlay would point back at the hidden single-page tile and your annotations would paint off-screen until you changed view modes.The coordinate space
KillerPDF keeps where a mark sits separate from how large it is drawn. The position is stored in a fixed internal measurement that never changes as you zoom, while the number of pixels actually drawn grows as you zoom in. Holding those two ideas apart is what lets an annotation stay locked to the same spot on the page while the page is always drawn sharply at whatever magnification you are using.
1. A fixed internal size ("render-dim")
Every page is first scaled to a standard internal size: the longer of its two sides is set to exactly 2048 units, and the shorter side is scaled to keep the page's proportions. These units are counted on their own and have nothing to do with screen pixels, so they do not change when you zoom or switch view modes. Annotation positions are recorded in this fixed measurement, which is why a mark stays in exactly the same place on the page no matter how far you zoom or which layout you view. The code calls this render-dim space, and the two resulting numbers, the page's width and height in these units, are written rdW and rdH below. One point, the unit the PDF itself uses, is 1/72 of an inch.
rdW = round(2048 × pageWidthPt / maxDim)
rdH = round(2048 × pageHeightPt / maxDim) // longest side -> 2048
2. Drawing sharpness follows zoom, not position
The page image (the bitmap, meaning the grid of pixels the page is rendered into) is drawn at a resolution that follows two things: your display's pixel density and your current zoom. Magnify a page three times and it is redrawn from three times as many pixels rather than stretched, so text and lines stay sharp instead of turning blocky. A ceiling of 6144 pixels on the longest side limits how much memory a single page can take. This affects only sharpness; the stored positions from step 1 are untouched, which is the entire reason the two are kept apart.
// dpiScale = display pixel density (1.0 at 96 DPI, 1.5 at 150%); zoom = current magnification
3. The coordinate Y-flip
The final step is that the PDF format and the screen disagree about where a page begins. A PDF measures positions from the bottom-left corner and counts upward, while the screen, and KillerPDF's drawing surface, measures from the top-left corner and counts downward. So every mark has to be turned top-to-bottom as it is drawn, and scaled from the PDF's own points into render-dim units at the same time. In the formula below, pdfW and pdfH are the page's width and height in PDF points; renderW and renderH are the same page in render-dim units (the rdW and rdH from step 1); sx and sy are the scale factors between the two; left and top are the mark's position read from the PDF; and the result, canvasX and canvasY, is where the mark is placed on the drawing surface.
canvasX = left × sx
canvasY = renderH - top × sy // flip the vertical axis
canvasY = renderH - top × sy. The drawing surface is measured in device-independent pixels (DIP), a unit that stays constant no matter the screen's density. Because the same stored point feeds all four view modes, it lands on the same spot in each.Because rdW and rdH are worked out once and then reused everywhere, the same measurements feed all four view modes, so a mark placed in one mode lands on the exact same spot in every other.
The annotation model
Every annotation lives in _annotations, a Dictionary<int, List<PageAnnotation>> keyed by page. Six types cover everything the toolbar can draw:
| Type | What it is |
|---|---|
| Text | Editable text box with its own font, size and color |
| Cover | Opaque box, always paired with a replacement Text (see below) |
| Highlight | One annotation, three modes - Fill, Strikethrough, Underline |
| Ink | Freehand strokes; also backs the straight Line tool |
| Signature | Drawn or imported vector signature |
| Image | Pasted or imported raster, freely resized |
One funnel, every repaint
No commit path paints annotations directly - they all call RenderAllAnnotations(page), which clears that page's overlay, repaints every annotation in _annotations[page], re-adds the live form fields, then re-applies the search highlights last. That tail ordering is why a highlight survives every re-render, scroll and zoom instead of being painted over.
Undo
Edits push onto a single _undoStack. A linked pair (Cover + Text) goes on as one entry, so a single Ctrl+Z removes both halves together rather than leaving an orphaned cover behind.
Editing existing text
Double-click a line of real PDF text and KillerPDF reads the words underneath, then drops two linked annotations as a single undo: an opaque Cover that blocks the original, and an editable Text box on top. A shared PairId locks them together.
Zoom & interaction
Cursor-anchored zoom
Ctrl+wheel zooms around the cursor. The cursor position and scroll offsets are captured before the zoom changes, then the offsets that keep that point fixed are applied once layout settles:
newHOff = (oldHOff + cursorX) × ratio - cursorX
newVOff = (oldVOff + cursorY) × ratio - cursorY // clamped at >= 0
Grid zoom by column count
Grid snaps to a whole number of columns: the count is authoritative and the zoom is derived from it, so the grid lays out exactly N pages with no leftover gap.
Saving & the temp-reload dance
Saving never changes the document you are looking at. KillerPDF writes a clean copy with no annotations, then permanently bakes in stamps first, then annotations, and reopens that fresh copy. Starting from a clean base every time means it can never accidentally bake the same thing in twice.
Why structural edits reload
Rotation, page operations and decryption route through SaveTempAndReload. It zeroes every page's /Rotate entry before writing, because Docnet (PDFium) sizes the page bitmap from the unrotated MediaBox - leave the rotation in and the rendered content clips. The file is written flat, reopened in Modify mode, and the rotations are re-applied in memory so the page still reads right.
Robustness
KillerPDF is built to open the PDFs other viewers choke on. It tries a normal open first, then catches each kind of failure and routes it to a specific recovery. Two rules hold throughout: heavy recovery work runs off the UI thread behind the busy overlay, and a repair never edits your file - it always produces a copy.
The open fallback ladder
The open path is a chain of typed exception handlers, each rung catching one class of failure:
| Failure | Recovery |
|---|---|
| Owner / permission lock, no open password | Reopen read-only so it can still be viewed and printed |
| Open password | Prompt for it, then save a decrypted temp copy so PDFium can render |
| Malformed xref | Drop to read-only with a warning; if that also fails, offer a repair |
| "Unexpected EOF" on a valid file | Re-save losslessly through PDFium; opens clean, no save nag |
| Anything unclassified | Offer a PDFium repair, which recovers most damaged files |
Encryption and permissions
The KillerPDF.Engine authenticates Standard Security revisions 2 through 6, including RC4, AES-128, AES-256 and crypt filters. It distinguishes user and owner authentication, exposes the document's operation permissions, and enforces those permissions at the high-level editing APIs. Authenticated documents can be updated incrementally or rewritten while preserving encryption; decryption is an explicit workflow rather than a prerequisite for every edit.
Network and partial reads
UNC shares and the WSL \\wsl$ 9P filesystem sometimes hand back partial reads, which the parser sees as a truncated file. Before opening anything on a network path, KillerPDF copies it to a local temp with a single read-to-EOF, then opens the complete copy - while keeping your original path for display and Save.
Repair works on a copy
When recovery falls through to a repair, the file is piped through PDFium, which has aggressive error recovery and rewrites a correct cross-reference table into a brand-new file. The original on disk is never touched. Repaired copies can lose bookmarks, forms and other interactive features, and the dialog says so before proceeding.
Standards conformance
A PDF editor has one obligation above all others: saving your file must not damage it. Starting with 1.6.4, that claim is tested rather than assumed. Every release is validated against veraPDF, the industry reference validator for PDF/A and PDF/UA, across a 2,907-file public conformance corpus (the veraPDF test corpus, the Isartor PDF/A-1b suite, and the TWG test files). These are deliberately hostile files, most built to violate exactly one clause of a standard, so any structural damage a save introduces shows up immediately as a newly failed rule.
How the test works
Every corpus file is validated pristine, resaved through KillerPDF's normal open/save pipeline (headlessly, via --batch-resave), and validated again. A comparison script then flags any file that fails a rule after the resave that it did not fail before. The bar for release is zero regressions. A second pass runs qpdf --check on every original/resave pair and flags any file whose structural health worsened.
The 1.8 validation gates
| Outcome | Files |
|---|---|
| Corpus total | 47,024 |
| Incremental structural corpus | 2,907 files |
| Selected-page import corpus | 2,907 files, zero unexpected failures |
| Full rewrite corpus | 2,898 saved, 9 safe skips, zero veraPDF regressions |
| qpdf structural comparison | 2,898 pairs, zero worsened |
| Engine tests | 1,437 |
| Build quality gate | Release build, zero warnings |
| Independent validators | qpdf, veraPDF and OpenSSL |
Owning the document engine
KillerPDF 1.8 replaces its legacy PdfSharpCore document pipeline with The KillerPDF.Engine, built in this repository from PDF syntax upward. Validation is performed at parser, object-graph, writer, application-integration and public-corpus levels. The engine can preserve existing bytes through incremental revisions or produce deterministic full rewrites, and it fails closed when required structure cannot be interpreted safely.
- PDF 2.0 headers, cross-reference streams, object streams and incremental revisions are native concepts.
- PDF/A-4, PDF/A-4e, PDF/A-4f and PDF/UA-2 authoring safeguards are coordinated across metadata, fonts, structure, forms, annotations and associated files.
- Full rewrites are deterministic; incremental edits preserve the original byte prefix.
- Bounded parsing, graph validation and explicit implementation limits reject ambiguous or unsafe input before writing.
The complete reusable-library architecture, capability map, validation model and developer quick start are in the KillerPDF.Engine developer guide.
Localization
The desktop interface is localized through per-locale ResourceDictionary files under Strings/: 15 locales, one XAML file each, including Russian, Kazakh, Italian, Polish, Hungarian, Bengali, Japanese, and simplified and traditional Chinese. Code-built and XAML controls resolve keys through Loc("Str_...") or a DynamicResource, so switching language reflows the UI live without a restart.
Captions and tooltips are separate strings
A toolbar button carries two independent strings: the hover tooltip (Str_TT_*) and the text caption under or beside the icon (Str_Lbl_*, mapped per glyph). Because they are localized separately, the toolbar can shed captions to save width while every tooltip stays intact.
Constants & limits
| Specification | Value |
|---|---|
| Render-dim longest side | 2048 DIP (zoom-stable) |
| Bitmap resolution cap | 6144 px |
| Print / OCR render | 300 DPI / 2600 px (~300 DPI on Letter) |
| Zoom range / step | 5% to 500%, 15% steps |
| Render-cache tabs (LRU) | 3 most-recently-used; ~160 MB per tab; 48-entry hard cap |
| Folder / zip import cap | 50 files |
| Signature reservation | 16,384 bytes, SHA-256, whole chain |
| Languages / themes | 15 locales / 13 themes + accent variants |
A full 50-page technical brochure (the same facts, with the interactive forms and theme gallery) ships in the repo as KillerPDF.pdf - open it in KillerPDF itself.
Glossary
Plain-language definitions of the terms and libraries used on this page, in alphabetical order.
| Term | What it means |
|---|---|
| Annotation | Anything you add on top of a PDF: a highlight, text box, drawn line, signature, or image. It sits on the overlay, separate from the original page, and only becomes part of the file when you save (see Flatten). |
| Bitmap | A grid of colored pixels. To display a page, KillerPDF draws (rasterizes) it into a bitmap at a resolution chosen from your zoom and screen density. |
| CMS signature | Cryptographic Message Syntax, the standard format for a digital signature embedded in a PDF. KillerPDF signs using SHA-256 over the whole file. |
| Costura (Costura.Fody) | A build-time bundler retained for ordinary development builds. Release packaging produces explicit framework-dependent and self-contained payloads for the installer and portable launcher. |
| Cover / cover-pair | A Cover is an opaque box that hides the original words on a page. To edit existing PDF text, KillerPDF lays a Cover over the old text and a Text box on top holding your replacement; the two are locked together as a cover-pair. |
| Cross-reference table (xref) | The index near the end of a PDF that records where every internal object is stored. If it is damaged, many readers fail to open the file, so KillerPDF has recovery paths that rebuild it. |
| Device-independent pixel (DIP) | The unit KillerPDF's drawing surface uses. One DIP is a fixed physical size regardless of how dense the screen is, so layouts look the same across monitors. |
| Docnet (Docnet.Core) | The library that lets KillerPDF call PDFium from .NET to turn pages into bitmaps. |
| DPI (dots per inch) | How many pixels a screen packs into an inch, i.e. its density. Windows reports it as a scale: 1.0 at 96 DPI (100%), 1.5 at 150%. Higher DPI means more pixels are drawn for the same physical size. |
| Flatten (flattening) | Burning annotations permanently into the page when you save, so they become part of the PDF's own content instead of separate, editable marks. |
| Form field | An interactive field built into a PDF, such as a text box, checkbox, or dropdown, that a person fills in. |
| Ink | A freehand drawn stroke. The Line tool is stored as ink as well. |
| Linearized PDF | A PDF arranged so a viewer can start showing the first page before the whole file has loaded (sometimes called "fast web view"). These files often keep their structure in object streams. |
| LRU cache (least recently used) | A memory-saving rule that keeps the most recently used items and drops the oldest. KillerPDF retains drawn-page caches for only the three most recent tabs, with an approximately 160 MB per-tab budget and 48-entry hard cap. |
| .NET 10 | The modern .NET runtime used by both the Windows application and The KillerPDF.Engine. The installer detects or installs the Desktop Runtime; the portable package carries it. |
| Object stream | A compressed container inside modern PDFs (version 1.5 and later) that bundles many of the file's internal objects together. Some libraries cannot read them, which is why KillerPDF falls back to PDFium for certain jobs. |
| OCR (optical character recognition) | Reading the actual text out of a scanned image so it can be searched, selected, or copied. KillerPDF uses Tesseract. |
| Overlay | The transparent sheet drawn directly on top of a page image, where your annotations are painted. The page image underneath is never changed. |
| PDFium | Google's PDF engine (the same one inside Chrome). KillerPDF uses it to render pages to images and to read structures other libraries cannot. |
| PdfPig | A .NET library KillerPDF uses to read text from a PDF: search, selection, and detecting each letter's font and size. |
| The KillerPDF.Engine | KillerPDF's independent, UI-free .NET document library for reading, validating, authoring, editing, signing, encrypting and writing PDF files. It does not render pages or provide desktop controls. |
| Point | The PDF's own unit of length. One point is 1/72 of an inch. |
| Rasterize | To convert a page's text and shapes into a grid of pixels (a bitmap) for display. |
| Render-dim space | KillerPDF's fixed internal coordinate system for a page, sized so the longer side is 2048 units and unrelated to zoom or screen pixels. Annotation positions are stored here so they never drift as you zoom or change view mode. |
| Temp-reload | Saving the current state to a temporary copy and reopening it, used for operations like rotation and repair, so your original file is never edited in place. |
| Tesseract | The open-source OCR engine embedded in KillerPDF. |
| Tile | A single page's image-and-overlay pair as it is laid out on screen. |
| WPF (Windows Presentation Foundation) | The native Windows framework KillerPDF's interface is built with. No browser engine is involved. |
| Y-flip | Turning a mark upside-down when drawing it, because a PDF measures upward from the bottom-left corner while the screen measures downward from the top-left. |