PDF tools are utilities that read or rewrite a Portable Document Format file. The category spans merging, splitting, compression, rotation, watermarking, page-number stamping, text extraction, and conversion to or from image formats.
PDF tools handle the small surgeries that come up around documents.
Browser-based PDF tools process the file inside the current tab using pdf-lib for edits and PDF.js for rendering. Both libraries are pure JavaScript that runs in your browser, with no upload step.
The trade-off versus a server-side service is throughput. A browser tab is bound by device memory and a single thread. Merging two 20 MB PDFs runs in well under a second on a modern laptop. Pushing a 500 MB scanned book through pdf-lib in a phone browser is going to stall.
Server-side PDF pipelines win for batch jobs, OCR over thousands of pages, or printer-bound PDF/X validation against ICC color profiles. For everyday operations on a handful of files, the browser route is simpler, faster, and keeps the document on your own machine.
| Tool | Primary use | Output / options |
|---|---|---|
| Merge PDF | Combine files | Multiple PDFs in, single PDF out |
| Split PDF | Extract pages or ranges | Page list or range syntax |
| PDF to image | Rasterize pages | JPEG or PNG per page |
| Image to PDF | Wrap images as PDF | JPG, PNG, WebP, GIF input |
| Rotate PDF | Fix orientation | 90, 180, 270 per page |
| Compress PDF | Reduce size | Lossless or image re-render |
| Add page numbers | Stamp numbers | Position, start, size controls |
| PDF watermark | Diagonal watermark | Opacity, size, color |
| Extract text | Get plain text | Copy or download .txt |
| Delete pages | Remove pages | Thumbnail picker |
| Reorder pages | Drag into new order | Drag-drop reorder |
Compile a multi-page expense report. Photograph each receipt, run them through image to PDF, then use merge PDF to attach a cover sheet. Add page numbers so the accounts team can reference items by page.
Prepare a contract for circulation. Use delete pages to strip the internal markup pages, apply PDF watermarkwith “DRAFT”, then compress PDF so the file fits an email attachment limit.
Convert a research PDF into editable notes. Run extract text to pull the body copy, then export specific figures with PDF to image for use in slides or blog posts.
The base PDF formatis a container for text, vector paths, raster images, and fonts. It is the default whenever a file is referred to as “a PDF”.
PDF/A is an archival profile. It bans external dependencies such as JavaScript and linked fonts so the document remains readable decades from now. Government and legal archives often require PDF/A compliance.
PDF/X is a print-production profile. It requires embedded color profiles, prohibits transparency that the print pipeline cannot reproduce, and pins font subsets. Most print shops expect PDF/X-1a or PDF/X-4 for offset jobs.
Reviewed and tested May 25, 2026.