Create a Workflow

Chain multiple PDF processing tools together to create custom automated workflows. Perfect for batch processing and complex document transformations

Multiple Files

When multiple PDFs are selected, they are automatically merged into one document before applying the workflow steps.

Define your workflow as a JSON array of processing steps. Each step specifies a tool and its parameters.

📄 Processing Tools

compress - Reduce file size (level: low/medium/high)

rotate - Rotate pages (degrees: 90/180/270)

repair - Fix PDF structure

ocr - Add text recognition (lang: eng/spa/fra/deu)

✨ Enhancement Tools

pdfa - Convert to PDF/A (level: 1b/2b)

watermark - Add text/image overlay

page-numbers - Add page numbering

🗄️ Document Archival

[
  {"tool":"repair","params":{}},
  {"tool":"ocr","params":{"lang":"eng"}},
  {"tool":"pdfa","params":{"level":"2b"}}
]

Perfect for long-term document storage and compliance.

📊 Presentation Ready

[
  {"tool":"compress","params":{"level":"medium"}},
  {"tool":"page-numbers","params":{"position":"bottom-center","size":12}},
  {"tool":"watermark","params":{"text":"CONFIDENTIAL","opacity":0.3}}
]

Optimize for sharing with page numbers and watermarks.