frontend/src-tauri/thumbnail-handler/README.md
A lightweight COM DLL that provides PDF page-preview thumbnails in Windows Explorer when Stirling-PDF is the default PDF application.
When Stirling-PDF registers as the default PDF handler, Windows associates .pdf files with Stirling's ProgID. Without a thumbnail handler on that ProgID, Explorer falls back to showing the application icon (the big S logo) instead of a page preview. This DLL restores thumbnail previews by implementing the Windows Shell IThumbnailProvider COM interface.
IInitializeWithStream — passes the PDF file content as an IStream.IThumbnailProvider::GetThumbnail(cx) — requests a bitmap of size cx × cx.Windows.Data.Pdf WinRT API (the same engine Edge uses), preserving aspect ratio.HBITMAP via CreateDIBSection.All COM methods are wrapped in catch_unwind so a malformed PDF cannot crash Explorer.
| Language | Rust (cdylib) |
| DLL size | ~156 KB |
| External deps | None — uses only Windows built-in APIs |
| PDF renderer | Windows.Data.Pdf (WinRT, Windows 10+) |
| Image decode | WIC (IWICImagingFactory) with BGRA32 format conversion |
| COM CLSID | {2D2FBE3A-9A88-4308-A52E-7EF63CA7CF48} |
| Threading model | Apartment (STA — standard for shell extensions) |
| Min Windows | Windows 10 |
The WiX installer (provisioning.wxs) registers:
HKLM\SOFTWARE\Classes\CLSID\{2D2FBE3A-...}\InprocServer32 pointing to the DLLHKLM\SOFTWARE\Classes\.pdf\shellex\{E357FCCD-...} linking .pdf thumbnails to our CLSIDBoth are automatically removed on uninstall.
The DLL is built automatically as part of the Tauri build pipeline via build-provisioner.mjs:
cd frontend
npm run tauri-build
To build the DLL standalone:
cd frontend/src-tauri/thumbnail-handler
cargo build --release
# Output: target/release/stirling_thumbnail_handler.dll
This DLL is Windows-only. Linux and macOS don't need it — their thumbnail systems (thumbnailers on Linux, Quick Look on macOS) are decoupled from the default app association and continue working regardless of which app is set as default.