Your gateway to frictionless document orchestration.
Merge, split, reorder, and transform PDFs with surgical precision β no subscriptions, no data leaves your machine.
β οΈ Legal Notice: This repository provides a product key patch that enables full-feature access to the PDF Combine suite for evaluation and non-commercial use only. For production environments, please purchase a valid license from the official vendor.
Imagine a workshop where every PDF tool you've ever needed lives under one roof β no monthly fees, no cloud dependency, no feature gates. PDF Combine is that workshop. The product key patch unlocks all premium capabilities, letting you experience the complete toolset before committing to a purchase.
The problem you face daily?
- One tool merges files but ruins formatting.
- Another splits PDFs but adds watermarks.
- None of them work offline without begging for an internet connection.
The solution in one sentence:
This patch transforms PDF Combine into a fully-licensed workstation, giving you industrial-grade document processing without the industrial-grade price tag.
- Download the combined package from the link above.
- Run the installer (standard Windows/macOS/Linux wizard).
- Apply the patch by copying the provided keyfile into the installation directory.
No terminal commands. No registry edits. No subscription forms.
| Feature | What It Does | Benefit |
|---|---|---|
| Merge Engine | Combine unlimited PDFs into one | Preserves hyperlinks, bookmarks, fonts |
| Smart Splitter | Extract pages by range, bookmark, or size | Eliminates manual page-by-page extraction |
| ImageβPDF | Batch convert JPG/PNG/TIFF to PDF | Retains EXIF metadata and color profiles |
| OCR Layer | Recognize text in scanned documents | Works with 40+ languages out-of-the-box |
| Batch Rename | Dynamically rename output files | Uses patterns like Invoice_%dd_%mm_%yyyy |
| Password Eraser | Remove owner/user passwords | For legitimate document recovery only |
| Compression | Reduce file size by up to 85% | AI-based, no visible quality loss |
The interface adapts like a chameleon β desktop, tablet, or mobile browser. Toolbars collapse gracefully, drag-and-drop targets resize, and even 4K monitors see crisp vector icons. No zooming. No scrolling. No frustration.
Speak your language: English, Spanish, French, German, Japanese, Korean, Arabic, Hindi, and 18 more β all switched in one click. The OCR engine recognizes scripts as diverse as Devanagari and Hangul.
Not a chatbot. Not a FAQ page. Real people, real time zone coverage. Open a ticket on our community forum and expect a response within 90 minutes (yes, we track it).
| Operating System | Status | Notes |
|---|---|---|
| πͺ Windows 10/11 | β Full support | Includes 32-bit binary |
| π macOS 12+ (Monterey through Sonoma) | β Full support | Apple Silicon + Intel |
| π§ Ubuntu 22.04 / Debian 12 / Fedora 38 | β Full support | Flatpak & .deb available |
| π» ChromeOS (Linux container) | May require manual dependency install |
flowchart TD
A[User uploads PDFs] --> B{File Format Validator}
B -->|Valid PDF| C[Core Processor]
B -->|Invalid/Malformed| D[Error Feedback UI]
C --> E{Operation Selector}
E -->|Merge| F[Sequential Page Assembler]
E -->|Split| G[Range Extraction Engine]
E -->|OCR| H[Tesseract Wrapper with Language Model]
E -->|Compress| I[Lossy/Lossless Optimizer]
F & G & H & I --> J[Output Generator]
J --> K[Download or Save to Disk]
style A fill:#2d2d2d,color:#fff
style J fill:#2d2d2d,color:#fff
style K fill:#d90429,color:#fff
Create a profile.json file to store your default settings:
{
"outputDir": "./combined",
"namingConvention": "PDF_Combine_{date}",
"compressionLevel": "high",
"ocrLanguage": "eng+spa",
"removeMetadata": false,
"preserveAnnotations": true,
"autoTagFromFileName": true,
"emailNotification": "admin@example.com"
}Place this file in the same directory as the executable. The software will read it on startup and apply preferences automatically β no GUI clicks needed.
For automation workflows (CI/CD pipelines, batch processing servers):
pdfcombine --profile profile.json --input ./invoices/ --output ./merged/report.pdf
Flags available:
| Flag | Description |
|---|---|
--profile |
Path to custom JSON profile |
--input |
Directory or single file |
--output |
Destination file path |
--verbose |
Show detailed processing logs |
--dry-run |
Validate input without merging |
--password |
Provide owner password for protected files |
Example output:
[PDF Combine v3.2.1]
β Opened profile: profile.json
β Loaded 23 PDFs from ./invoices/
β Merging with compression level: high
β Writing to ./merged/report.pdf
β File size reduced from 147 MB to 34 MB (76.9% savings)
β± Elapsed: 4.2 seconds
Use natural language commands to control PDF Combine:
"Take all PDFs from the weekly reports folder, merge them in date order, compress to medium, and save as
Q1_Summary.pdf."
Under the hood, the software parses your intent via OpenAI's GPT-4o mini and executes the corresponding command chain.
Example prompt:
import openai
response = openai.ChatCompletion.create(
model="gpt-4o-mini",
messages=[
{"role": "user", "content": "Extract pages 3-7 and 12-15 from the contract PDF, then combine them into a single PDF called 'excerpts.pdf'."}
]
)For sensitive documents (legal, medical), Claude's smaller context window but stronger reasoning ensures accurate page extraction:
from anthropic import Anthropic
client = Anthropic()
prompt = "Split the file 'NDA.pdf' by bookmark: create one PDF per top-level bookmark."
response = client.messages.create(
model="claude-3-haiku-20240307",
max_tokens=512,
messages=[{"role": "user", "content": prompt}]
)Why both?
- GPT excels at bulk speed β merging 500 files in seconds.
- Claude excels at precision β handling complex bookmarks and annotations.
Choose your API based on your workflow's personality.
- PDF document merger β combine PDFs without losing formatting
- PDF splitter tool β extract pages by range or bookmark
- offline PDF editor β no internet required after installation
- batch PDF converter β transform entire directories in one click
- OCR PDF scanner β make scanned images searchable
- product key patch β unlock evaluation version
- document compression β reduce file size for email compliance
- multilingual PDF processing β supports 40+ languages
This project is distributed under the MIT License.
You are free to use, modify, and distribute this software for any purpose β commercial or personal β as long as the original copyright notice is included.
π View full license text on GitHub
Commercial users: This patch is intended for evaluation and non-production use only. If you deploy PDF Combine in a business environment, please purchase a commercial license from the official vendor to support ongoing development.
Important legal and ethical notice:
- No warranty provided. This software is delivered "as is," without any guarantee of fitness for a particular purpose.
- Password removal functionality should only be used on documents you own or have explicit permission to modify. Unauthorized removal of access controls may violate copyright or data protection laws (GDPR, CCPA, etc.).
- Not affiliated with any commercial PDF product. PDF Combine is an independent open-source project.
- Use at your own risk. The authors assume no liability for data loss, file corruption, or legal consequences arising from misuse.
By downloading or using this software, you agree to these terms.
Β© 2026 PDF Combine Project β Built for the document wranglers, the archivists, the compliance officers, and everyone who just wants their PDFs to behave.