# PDF4.dev > PDF4.dev is a PDF generation API that lets developers create pixel-perfect PDFs from HTML templates. Design templates visually or in code using a Monaco-based editor with live preview, define dynamic fields with Handlebars {{variables}}, and generate PDFs via a simple REST API call from any language: TypeScript, Python, Go, Rust, PHP, or cURL. The rendering pipeline uses headless Chromium (Playwright) for accurate CSS support including flexbox, grid, and web fonts. PDF4.dev also provides a built-in MCP server so AI agents like Claude, ChatGPT, and Cursor can generate PDFs with natural language. Free browser-based PDF tools (merge, split, compress, convert) process files entirely client-side for privacy. Self-hostable via Docker with SQLite storage, PDF4.dev is a developer-first alternative to PDFMonkey, DocRaptor, and DIY Puppeteer setups. > Last updated: 2026-08-06 ## IMPORTANT: Base URL The base URL for all API calls is `https://pdf4.dev`. There is NO separate API subdomain. Do NOT use `api.pdf4.dev`, it does not exist. Always use `https://pdf4.dev/api/v1/...`. ## Key facts - Rendering engine: headless Chromium via Playwright, ~300ms per PDF with warm browser pool - Template system: Handlebars with 13 built-in helpers (formatNumber, formatDate, formatCurrency, math, comparison operators) - 6 page presets: A4, A4 landscape, Letter, Letter landscape, Square, Custom dimensions - Authentication: API keys with two scopes (full_access, render_only) - AI-native: MCP server with 14 annotated tools, llms.txt, agents.md, OpenAPI 3.1 spec - 24 free PDF tools: all client-side except HTML to PDF (Playwright server-side) - 10 starter templates: Invoice, Quote, Receipt, Report, Certificate, Shipping Label, Event Ticket, Contract, plus invoice and report variants with repeating header and footer - Self-hostable: Docker image with SQLite + WAL mode, single volume mount - Error format: structured JSON with type, code, message fields - API versioning: all endpoints under /api/v1/ for stability ## Documentation - [API Reference](https://docs.pdf4.dev): Interactive API documentation (Scalar) - [OpenAPI Spec](https://pdf4.dev/api/v1/openapi.json): OpenAPI 3.1 specification (machine-readable) - [Getting Started](https://pdf4.dev/dashboard/onboarding): Quick start guide - [Full API Documentation](https://pdf4.dev/llms-full.txt): Complete API docs optimized for LLMs ## API Endpoints Only the HTTP methods listed below are supported. Do NOT use PATCH, it is not supported. Do NOT invent endpoints like `/update` or `/edit`, they do not exist. - [Render PDF](https://pdf4.dev/api/v1/render): POST: Generate PDF from template or raw HTML with Handlebars {{variables}} - [Templates](https://pdf4.dev/api/v1/templates): GET/POST: List and create HTML templates - [Template by ID](https://pdf4.dev/api/v1/templates/{id}): GET/PUT/DELETE: Single template operations. PUT body uses `html` (not `content`). - [Duplicate Template](https://pdf4.dev/api/v1/templates/{id}/duplicate): POST: Clone a template - [Logs](https://pdf4.dev/api/v1/logs): GET: PDF generation history (cursor-paginated) - [Stats](https://pdf4.dev/api/v1/stats): GET: Aggregated usage statistics - [API Keys](https://pdf4.dev/api/v1/api-keys): GET/POST/DELETE: Manage API keys ## Authentication All API calls require a Bearer token: `Authorization: Bearer p4_live_xxx` Create an API key at: https://pdf4.dev/dashboard/settings ## Free PDF Tools (browser-based, no API key needed) - [Compress PDF](https://pdf4.dev/tools/compress-pdf): Shrink images inside your PDF, text stays selectable - [Merge PDF](https://pdf4.dev/tools/merge-pdf): Combine multiple PDFs into one - [Split PDF](https://pdf4.dev/tools/split-pdf): Extract pages or split into multiple files - [Reorder pages](https://pdf4.dev/tools/reorder-pdf): Drag and drop to rearrange PDF pages - [PDF to PNG](https://pdf4.dev/tools/pdf-to-png): Convert PDF pages to high-quality images - [HTML to PDF](https://pdf4.dev/tools/html-to-pdf): Convert HTML code or a URL to PDF - [Image to PDF](https://pdf4.dev/tools/image-to-pdf): Convert PNG or JPG images to PDF - [Rotate PDF](https://pdf4.dev/tools/rotate-pdf): Rotate pages 90, 180, or 270 degrees - [PDF to JPG](https://pdf4.dev/tools/pdf-to-jpg): Convert PDF pages to JPG images - [Watermark PDF](https://pdf4.dev/tools/watermark-pdf): Add text or image watermark to PDF - [Protect PDF](https://pdf4.dev/tools/protect-pdf): Add password protection to your PDF - [Unlock PDF](https://pdf4.dev/tools/unlock-pdf): Remove password from a protected PDF - [Add page numbers](https://pdf4.dev/tools/number-pdf): Add page numbers to every page of your PDF - [Flatten PDF](https://pdf4.dev/tools/flatten-pdf): Convert form fields into static non-editable content - [Delete pages](https://pdf4.dev/tools/delete-pdf-pages): Remove specific pages from your PDF - [Extract pages](https://pdf4.dev/tools/extract-pdf): Select and extract specific pages into a new PDF - [Crop PDF](https://pdf4.dev/tools/crop-pdf): Crop pages to remove unwanted margins or areas - [PDF to grayscale](https://pdf4.dev/tools/grayscale-pdf): Convert all pages to black and white - [Resize PDF](https://pdf4.dev/tools/resize-pdf): Change page dimensions (A4, Letter, custom) - [Edit metadata](https://pdf4.dev/tools/metadata-pdf): Edit title, author, subject, and keywords - [Redact PDF](https://pdf4.dev/tools/redact-pdf): Permanently black out sensitive content - [Repair PDF](https://pdf4.dev/tools/repair-pdf): Fix corrupted or damaged PDF files - [PDF to text](https://pdf4.dev/tools/pdf-to-text): Extract all text content from a PDF - [Webpage to PDF](https://pdf4.dev/tools/webpage-to-pdf): Convert any URL to a PDF document ## MCP Server (AI Agents) PDF4.dev includes a built-in Model Context Protocol (MCP) server for AI agents. - [MCP Endpoint](https://pdf4.dev/api/mcp): Streamable HTTP transport: works with Claude, ChatGPT, Cursor, Windsurf, VS Code - 14 annotated tools: get_info, render_pdf, preview_template, list_templates, get_template, create_template, update_template, delete_template, list_components, get_component, create_component, update_component, delete_component, list_logs - All tools include MCP annotations (readOnlyHint, destructiveHint, idempotentHint) for safe autonomous use - Auth: API key via Authorization header (recommended) or as tool parameter - [AI Integration Guide](https://pdf4.dev/ai-integration): Full setup guide for all AI clients ### MCP resources (4) Static reference documents loadable via `resources/read`, no API key required: - `pdf4dev://docs/quickstart` (Quickstart): The happy-path workflow for generating a PDF from scratch via MCP tools. - `pdf4dev://docs/handlebars-helpers` (Handlebars helpers): Built-in Handlebars helpers (formatNumber, formatDate, formatCurrency, text, comparison, and math) with examples. - `pdf4dev://docs/format-presets` (PDF format presets): Page sizes and the full PdfFormat options accepted by render_pdf and templates. - `pdf4dev://docs/components` (Component syntax): How to use , , and tags, including page numbers. ### MCP prompts (3) Ready-made prompt templates surfaced via `prompts/list`: - `generate-invoice` (client_name, amount, invoice_number?, currency?): Walks the agent through picking an invoice template and calling render_pdf with the right variables. - `create-template-from-description` (description, variables?): Turns a description into a reusable Handlebars template via create_template. - `debug-render-error` (template_id?): Collects context about a recent render failure and proposes a fix. ## Comparisons - [PDF4.dev vs PDFMonkey](https://pdf4.dev/vs/pdfmonkey): Feature comparison - [PDF4.dev vs DIY Puppeteer](https://pdf4.dev/vs/puppeteer): Feature comparison - [PDF4.dev vs DocRaptor](https://pdf4.dev/vs/docraptor): Feature comparison - [PDF4.dev vs WeasyPrint](https://pdf4.dev/vs/weasyprint): Feature comparison - [PDF4.dev vs wkhtmltopdf](https://pdf4.dev/vs/wkhtmltopdf): Feature comparison - [PDF4.dev vs jsPDF](https://pdf4.dev/vs/jspdf): Feature comparison - [PDF4.dev vs Gotenberg](https://pdf4.dev/vs/gotenberg): Feature comparison - [PDF4.dev vs PDFShift](https://pdf4.dev/vs/pdfshift): Feature comparison - [PDF4.dev vs PDFKit](https://pdf4.dev/vs/pdfkit): Feature comparison - [PDF4.dev vs html2pdf.js](https://pdf4.dev/vs/html2pdf): Feature comparison ## PDF Templates (free, niche-specific) - [Template Gallery](https://pdf4.dev/templates): Browse all templates by document type - [Certificate template for agencies](https://pdf4.dev/templates/certificate-agency) - [Certificate template for art studios & galleries](https://pdf4.dev/templates/certificate-art-studio) - [Certificate template for beauty salons](https://pdf4.dev/templates/certificate-beauty-salon) - [Certificate template for catering](https://pdf4.dev/templates/certificate-catering) - [Certificate template for chiropractors](https://pdf4.dev/templates/certificate-chiropractor) - [Certificate template for coaching](https://pdf4.dev/templates/certificate-coaching) - [Certificate template for dance studios](https://pdf4.dev/templates/certificate-dance-studio) - [Certificate template for data recovery services](https://pdf4.dev/templates/certificate-data-recovery) - [Certificate template for daycare](https://pdf4.dev/templates/certificate-daycare) - [Certificate template for dental](https://pdf4.dev/templates/certificate-dental) - [Certificate template for driving schools](https://pdf4.dev/templates/certificate-driving-school) - [Certificate template for education](https://pdf4.dev/templates/certificate-education) - [Certificate template for electricians](https://pdf4.dev/templates/certificate-electrician) - [Certificate template for elevator services](https://pdf4.dev/templates/certificate-elevator-service) - [Certificate template for event planning](https://pdf4.dev/templates/certificate-event-planning) - [Certificate template for fire protection services](https://pdf4.dev/templates/certificate-fire-protection) - [Certificate template for fitness](https://pdf4.dev/templates/certificate-fitness) - [Certificate template for graphic design](https://pdf4.dev/templates/certificate-graphic-design) - [Certificate template for gyms & fitness centers](https://pdf4.dev/templates/certificate-gym) - [Certificate template for healthcare](https://pdf4.dev/templates/certificate-healthcare) - [Certificate template for home inspectors](https://pdf4.dev/templates/certificate-home-inspector) - [Certificate template for it services](https://pdf4.dev/templates/certificate-it-services) - [Certificate template for jewelers](https://pdf4.dev/templates/certificate-jeweler) - [Certificate template for massage therapists](https://pdf4.dev/templates/certificate-massage-therapist) - [Certificate template for music schools](https://pdf4.dev/templates/certificate-music-school) - [Certificate template for music](https://pdf4.dev/templates/certificate-music) - [Certificate template for nonprofits](https://pdf4.dev/templates/certificate-nonprofit) - [Certificate template for notary services](https://pdf4.dev/templates/certificate-notary) - [Certificate template for nutritionists & dietitians](https://pdf4.dev/templates/certificate-nutrition) - [Certificate template for painting](https://pdf4.dev/templates/certificate-painting) - [Certificate template for personal trainers](https://pdf4.dev/templates/certificate-personal-trainer) - [Certificate template for pest control](https://pdf4.dev/templates/certificate-pest-control) - [Certificate template for pharmacies](https://pdf4.dev/templates/certificate-pharmacy) - [Certificate template for photography](https://pdf4.dev/templates/certificate-photography) - [Certificate template for security services](https://pdf4.dev/templates/certificate-security) - [Certificate template for solar energy](https://pdf4.dev/templates/certificate-solar) - [Certificate template for spas & wellness centers](https://pdf4.dev/templates/certificate-spa) - [Certificate template for tattoo studios](https://pdf4.dev/templates/certificate-tattoo) - [Certificate template for translation](https://pdf4.dev/templates/certificate-translation) - [Certificate template for tutoring centers](https://pdf4.dev/templates/certificate-tutoring-center) - [Certificate template for tutoring](https://pdf4.dev/templates/certificate-tutoring) - [Certificate template for veterinary](https://pdf4.dev/templates/certificate-veterinary) - [Certificate template for web development](https://pdf4.dev/templates/certificate-web-development) - [Certificate template for welding services](https://pdf4.dev/templates/certificate-welding) - [Certificate template for yoga studios](https://pdf4.dev/templates/certificate-yoga-studio) - [Credit note template for 3d printing services](https://pdf4.dev/templates/credit-note-3d-printing) - [Credit note template for accounting](https://pdf4.dev/templates/credit-note-accounting) - [Credit note template for agencies](https://pdf4.dev/templates/credit-note-agency) - [Credit note template for appliance repair](https://pdf4.dev/templates/credit-note-appliance-repair) - [Credit note template for architecture](https://pdf4.dev/templates/credit-note-architecture) - [Credit note template for art studios & galleries](https://pdf4.dev/templates/credit-note-art-studio) - [Credit note template for auto repair](https://pdf4.dev/templates/credit-note-auto-repair) - [Credit note template for bakeries](https://pdf4.dev/templates/credit-note-bakery) - [Credit note template for beauty salons](https://pdf4.dev/templates/credit-note-beauty-salon) - [Credit note template for bookkeepers](https://pdf4.dev/templates/credit-note-bookkeeper) - [Credit note template for bookkeeping](https://pdf4.dev/templates/credit-note-bookkeeping) - [Credit note template for cabinet makers](https://pdf4.dev/templates/credit-note-cabinet-maker) - [Credit note template for car dealerships](https://pdf4.dev/templates/credit-note-car-dealership) - [Credit note template for car washes](https://pdf4.dev/templates/credit-note-car-wash) - [Credit note template for carpet cleaning](https://pdf4.dev/templates/credit-note-carpet-cleaning) - [Credit note template for catering](https://pdf4.dev/templates/credit-note-catering) - [Credit note template for chiropractors](https://pdf4.dev/templates/credit-note-chiropractor) - [Credit note template for cleaning services](https://pdf4.dev/templates/credit-note-cleaning-service) - [Credit note template for coaching](https://pdf4.dev/templates/credit-note-coaching) - [Credit note template for concrete contractors](https://pdf4.dev/templates/credit-note-concrete) - [Credit note template for construction](https://pdf4.dev/templates/credit-note-construction) - [Credit note template for consultants](https://pdf4.dev/templates/credit-note-consultant) - [Credit note template for copywriters](https://pdf4.dev/templates/credit-note-copywriter) - [Credit note template for courier services](https://pdf4.dev/templates/credit-note-courier) - [Credit note template for dance studios](https://pdf4.dev/templates/credit-note-dance-studio) - [Credit note template for data recovery services](https://pdf4.dev/templates/credit-note-data-recovery) - [Credit note template for daycare](https://pdf4.dev/templates/credit-note-daycare) - [Credit note template for demolition companies](https://pdf4.dev/templates/credit-note-demolition) - [Credit note template for dental](https://pdf4.dev/templates/credit-note-dental) - [Credit note template for djs](https://pdf4.dev/templates/credit-note-dj) - [Credit note template for dog walkers & pet sitters](https://pdf4.dev/templates/credit-note-dog-walker) - [Credit note template for driving schools](https://pdf4.dev/templates/credit-note-driving-school) - [Credit note template for drone services](https://pdf4.dev/templates/credit-note-drone-service) - [Credit note template for e-commerce](https://pdf4.dev/templates/credit-note-ecommerce) - [Credit note template for education](https://pdf4.dev/templates/credit-note-education) - [Credit note template for electricians](https://pdf4.dev/templates/credit-note-electrician) - [Credit note template for elevator services](https://pdf4.dev/templates/credit-note-elevator-service) - [Credit note template for engraving & trophy shops](https://pdf4.dev/templates/credit-note-engraving) - [Credit note template for event planning](https://pdf4.dev/templates/credit-note-event-planning) - [Credit note template for event venues](https://pdf4.dev/templates/credit-note-event-venue) - [Credit note template for excavation companies](https://pdf4.dev/templates/credit-note-excavation) - [Credit note template for fence companies](https://pdf4.dev/templates/credit-note-fence-company) - [Credit note template for financial advisors](https://pdf4.dev/templates/credit-note-financial-advisor) - [Credit note template for fire protection services](https://pdf4.dev/templates/credit-note-fire-protection) - [Credit note template for fitness](https://pdf4.dev/templates/credit-note-fitness) - [Credit note template for flooring](https://pdf4.dev/templates/credit-note-flooring) - [Credit note template for florists](https://pdf4.dev/templates/credit-note-florist) - [Credit note template for food trucks](https://pdf4.dev/templates/credit-note-food-truck) - [Credit note template for freelancers](https://pdf4.dev/templates/credit-note-freelancer) - [Credit note template for funeral homes](https://pdf4.dev/templates/credit-note-funeral-home) - [Credit note template for garage door companies](https://pdf4.dev/templates/credit-note-garage-door) - [Credit note template for glass & window repair](https://pdf4.dev/templates/credit-note-glass-repair) - [Credit note template for graphic design](https://pdf4.dev/templates/credit-note-graphic-design) - [Credit note template for gyms & fitness centers](https://pdf4.dev/templates/credit-note-gym) - [Credit note template for handyman services](https://pdf4.dev/templates/credit-note-handyman) - [Credit note template for healthcare](https://pdf4.dev/templates/credit-note-healthcare) - [Credit note template for home inspectors](https://pdf4.dev/templates/credit-note-home-inspector) - [Credit note template for commercial hvac](https://pdf4.dev/templates/credit-note-hvac-commercial) - [Credit note template for hvac](https://pdf4.dev/templates/credit-note-hvac) - [Credit note template for insurance](https://pdf4.dev/templates/credit-note-insurance) - [Credit note template for interior design](https://pdf4.dev/templates/credit-note-interior-design) - [Credit note template for irrigation services](https://pdf4.dev/templates/credit-note-irrigation) - [Credit note template for it consultants](https://pdf4.dev/templates/credit-note-it-consultant) - [Credit note template for it services](https://pdf4.dev/templates/credit-note-it-services) - [Credit note template for jewelers](https://pdf4.dev/templates/credit-note-jeweler) - [Credit note template for landscaping](https://pdf4.dev/templates/credit-note-landscaping) - [Credit note template for laundry services](https://pdf4.dev/templates/credit-note-laundry-service) - [Credit note template for legal](https://pdf4.dev/templates/credit-note-legal) - [Credit note template for limousine & car services](https://pdf4.dev/templates/credit-note-limousine) - [Credit note template for locksmiths](https://pdf4.dev/templates/credit-note-locksmith) - [Credit note template for logistics](https://pdf4.dev/templates/credit-note-logistics) - [Credit note template for manufacturing](https://pdf4.dev/templates/credit-note-manufacturing) - [Credit note template for marketing](https://pdf4.dev/templates/credit-note-marketing) - [Credit note template for massage therapists](https://pdf4.dev/templates/credit-note-massage-therapist) - [Credit note template for mobile mechanics](https://pdf4.dev/templates/credit-note-mobile-mechanic) - [Credit note template for moving services](https://pdf4.dev/templates/credit-note-moving) - [Credit note template for music schools](https://pdf4.dev/templates/credit-note-music-school) - [Credit note template for music](https://pdf4.dev/templates/credit-note-music) - [Credit note template for nonprofits](https://pdf4.dev/templates/credit-note-nonprofit) - [Credit note template for notary services](https://pdf4.dev/templates/credit-note-notary) - [Credit note template for nursing homes](https://pdf4.dev/templates/credit-note-nursing-home) - [Credit note template for nutritionists & dietitians](https://pdf4.dev/templates/credit-note-nutrition) - [Credit note template for opticians & eyewear](https://pdf4.dev/templates/credit-note-optician) - [Credit note template for painting](https://pdf4.dev/templates/credit-note-painting) - [Credit note template for paving companies](https://pdf4.dev/templates/credit-note-paving) - [Credit note template for personal chefs](https://pdf4.dev/templates/credit-note-personal-chef) - [Credit note template for personal trainers](https://pdf4.dev/templates/credit-note-personal-trainer) - [Credit note template for pest control](https://pdf4.dev/templates/credit-note-pest-control) - [Credit note template for pet grooming](https://pdf4.dev/templates/credit-note-pet-grooming) - [Credit note template for photography](https://pdf4.dev/templates/credit-note-photography) - [Credit note template for plumbing](https://pdf4.dev/templates/credit-note-plumbing) - [Credit note template for pool services](https://pdf4.dev/templates/credit-note-pool-service) - [Credit note template for pressure washing](https://pdf4.dev/templates/credit-note-pressure-washing) - [Credit note template for print shops](https://pdf4.dev/templates/credit-note-printing) - [Credit note template for property management](https://pdf4.dev/templates/credit-note-property-management) - [Credit note template for real estate](https://pdf4.dev/templates/credit-note-real-estate) - [Credit note template for equipment rental](https://pdf4.dev/templates/credit-note-rental-equipment) - [Credit note template for retail](https://pdf4.dev/templates/credit-note-retail) - [Credit note template for roofing](https://pdf4.dev/templates/credit-note-roofing) - [Credit note template for saas companies](https://pdf4.dev/templates/credit-note-saas) - [Credit note template for security services](https://pdf4.dev/templates/credit-note-security) - [Credit note template for seo agencies](https://pdf4.dev/templates/credit-note-seo-agency) - [Credit note template for sign companies](https://pdf4.dev/templates/credit-note-signage) - [Credit note template for solar energy](https://pdf4.dev/templates/credit-note-solar) - [Credit note template for spas & wellness centers](https://pdf4.dev/templates/credit-note-spa) - [Credit note template for staffing agencies](https://pdf4.dev/templates/credit-note-staffing) - [Credit note template for surveyors](https://pdf4.dev/templates/credit-note-surveyor) - [Credit note template for tailors & alterations](https://pdf4.dev/templates/credit-note-tailor) - [Credit note template for tattoo studios](https://pdf4.dev/templates/credit-note-tattoo) - [Credit note template for taxi and rideshare](https://pdf4.dev/templates/credit-note-taxi) - [Credit note template for therapy](https://pdf4.dev/templates/credit-note-therapy) - [Credit note template for towing](https://pdf4.dev/templates/credit-note-towing) - [Credit note template for translation](https://pdf4.dev/templates/credit-note-translation) - [Credit note template for travel agencies](https://pdf4.dev/templates/credit-note-travel-agency) - [Credit note template for tree services](https://pdf4.dev/templates/credit-note-tree-service) - [Credit note template for trucking](https://pdf4.dev/templates/credit-note-trucking) - [Credit note template for tutoring centers](https://pdf4.dev/templates/credit-note-tutoring-center) - [Credit note template for tutoring](https://pdf4.dev/templates/credit-note-tutoring) - [Credit note template for upholstery services](https://pdf4.dev/templates/credit-note-upholstery) - [Credit note template for videography](https://pdf4.dev/templates/credit-note-videography) - [Credit note template for warehousing & storage](https://pdf4.dev/templates/credit-note-warehouse) - [Credit note template for waste management](https://pdf4.dev/templates/credit-note-waste-management) - [Credit note template for web development](https://pdf4.dev/templates/credit-note-web-development) - [Credit note template for web hosting providers](https://pdf4.dev/templates/credit-note-web-hosting) - [Credit note template for wedding planners](https://pdf4.dev/templates/credit-note-wedding-planner) - [Credit note template for welding services](https://pdf4.dev/templates/credit-note-welding) - [Credit note template for window cleaning](https://pdf4.dev/templates/credit-note-window-cleaning) - [Credit note template for yoga studios](https://pdf4.dev/templates/credit-note-yoga-studio) - [Delivery note template for 3d printing services](https://pdf4.dev/templates/delivery-note-3d-printing) - [Delivery note template for bakeries](https://pdf4.dev/templates/delivery-note-bakery) - [Delivery note template for cabinet makers](https://pdf4.dev/templates/delivery-note-cabinet-maker) - [Delivery note template for car dealerships](https://pdf4.dev/templates/delivery-note-car-dealership) - [Delivery note template for catering](https://pdf4.dev/templates/delivery-note-catering) - [Delivery note template for concrete contractors](https://pdf4.dev/templates/delivery-note-concrete) - [Delivery note template for construction](https://pdf4.dev/templates/delivery-note-construction) - [Delivery note template for courier services](https://pdf4.dev/templates/delivery-note-courier) - [Delivery note template for e-commerce](https://pdf4.dev/templates/delivery-note-ecommerce) - [Delivery note template for engraving & trophy shops](https://pdf4.dev/templates/delivery-note-engraving) - [Delivery note template for excavation companies](https://pdf4.dev/templates/delivery-note-excavation) - [Delivery note template for fence companies](https://pdf4.dev/templates/delivery-note-fence-company) - [Delivery note template for flooring](https://pdf4.dev/templates/delivery-note-flooring) - [Delivery note template for florists](https://pdf4.dev/templates/delivery-note-florist) - [Delivery note template for food trucks](https://pdf4.dev/templates/delivery-note-food-truck) - [Delivery note template for glass & window repair](https://pdf4.dev/templates/delivery-note-glass-repair) - [Delivery note template for commercial hvac](https://pdf4.dev/templates/delivery-note-hvac-commercial) - [Delivery note template for jewelers](https://pdf4.dev/templates/delivery-note-jeweler) - [Delivery note template for laundry services](https://pdf4.dev/templates/delivery-note-laundry-service) - [Delivery note template for logistics](https://pdf4.dev/templates/delivery-note-logistics) - [Delivery note template for manufacturing](https://pdf4.dev/templates/delivery-note-manufacturing) - [Delivery note template for moving services](https://pdf4.dev/templates/delivery-note-moving) - [Delivery note template for paving companies](https://pdf4.dev/templates/delivery-note-paving) - [Delivery note template for personal chefs](https://pdf4.dev/templates/delivery-note-personal-chef) - [Delivery note template for pharmacies](https://pdf4.dev/templates/delivery-note-pharmacy) - [Delivery note template for print shops](https://pdf4.dev/templates/delivery-note-printing) - [Delivery note template for equipment rental](https://pdf4.dev/templates/delivery-note-rental-equipment) - [Delivery note template for retail](https://pdf4.dev/templates/delivery-note-retail) - [Delivery note template for sign companies](https://pdf4.dev/templates/delivery-note-signage) - [Delivery note template for surveyors](https://pdf4.dev/templates/delivery-note-surveyor) - [Delivery note template for trucking](https://pdf4.dev/templates/delivery-note-trucking) - [Delivery note template for upholstery services](https://pdf4.dev/templates/delivery-note-upholstery) - [Delivery note template for warehousing & storage](https://pdf4.dev/templates/delivery-note-warehouse) - [Delivery note template for waste management](https://pdf4.dev/templates/delivery-note-waste-management) - [Delivery note template for welding services](https://pdf4.dev/templates/delivery-note-welding) - [Invoice template for 3d printing services](https://pdf4.dev/templates/invoice-3d-printing) - [Invoice template for accounting](https://pdf4.dev/templates/invoice-accounting) - [Invoice template for agencies](https://pdf4.dev/templates/invoice-agency) - [Invoice template for appliance repair](https://pdf4.dev/templates/invoice-appliance-repair) - [Invoice template for architecture](https://pdf4.dev/templates/invoice-architecture) - [Invoice template for art studios & galleries](https://pdf4.dev/templates/invoice-art-studio) - [Invoice template for auto repair](https://pdf4.dev/templates/invoice-auto-repair) - [Invoice template for bakeries](https://pdf4.dev/templates/invoice-bakery) - [Invoice template for beauty salons](https://pdf4.dev/templates/invoice-beauty-salon) - [Invoice template for bookkeepers](https://pdf4.dev/templates/invoice-bookkeeper) - [Invoice template for bookkeeping](https://pdf4.dev/templates/invoice-bookkeeping) - [Invoice template for cabinet makers](https://pdf4.dev/templates/invoice-cabinet-maker) - [Invoice template for car dealerships](https://pdf4.dev/templates/invoice-car-dealership) - [Invoice template for car washes](https://pdf4.dev/templates/invoice-car-wash) - [Invoice template for carpet cleaning](https://pdf4.dev/templates/invoice-carpet-cleaning) - [Invoice template for catering](https://pdf4.dev/templates/invoice-catering) - [Invoice template for chiropractors](https://pdf4.dev/templates/invoice-chiropractor) - [Invoice template for cleaning services](https://pdf4.dev/templates/invoice-cleaning-service) - [Invoice template for coaching](https://pdf4.dev/templates/invoice-coaching) - [Invoice template for concrete contractors](https://pdf4.dev/templates/invoice-concrete) - [Invoice template for construction](https://pdf4.dev/templates/invoice-construction) - [Invoice template for consultants](https://pdf4.dev/templates/invoice-consultant) - [Invoice template for copywriters](https://pdf4.dev/templates/invoice-copywriter) - [Invoice template for courier services](https://pdf4.dev/templates/invoice-courier) - [Invoice template for dance studios](https://pdf4.dev/templates/invoice-dance-studio) - [Invoice template for data recovery services](https://pdf4.dev/templates/invoice-data-recovery) - [Invoice template for daycare](https://pdf4.dev/templates/invoice-daycare) - [Invoice template for demolition companies](https://pdf4.dev/templates/invoice-demolition) - [Invoice template for dental](https://pdf4.dev/templates/invoice-dental) - [Invoice template for djs](https://pdf4.dev/templates/invoice-dj) - [Invoice template for dog walkers & pet sitters](https://pdf4.dev/templates/invoice-dog-walker) - [Invoice template for driving schools](https://pdf4.dev/templates/invoice-driving-school) - [Invoice template for drone services](https://pdf4.dev/templates/invoice-drone-service) - [Invoice template for e-commerce](https://pdf4.dev/templates/invoice-ecommerce) - [Invoice template for education](https://pdf4.dev/templates/invoice-education) - [Invoice template for electricians](https://pdf4.dev/templates/invoice-electrician) - [Invoice template for elevator services](https://pdf4.dev/templates/invoice-elevator-service) - [Invoice template for engraving & trophy shops](https://pdf4.dev/templates/invoice-engraving) - [Invoice template for event planning](https://pdf4.dev/templates/invoice-event-planning) - [Invoice template for event venues](https://pdf4.dev/templates/invoice-event-venue) - [Invoice template for excavation companies](https://pdf4.dev/templates/invoice-excavation) - [Invoice template for fence companies](https://pdf4.dev/templates/invoice-fence-company) - [Invoice template for financial advisors](https://pdf4.dev/templates/invoice-financial-advisor) - [Invoice template for fire protection services](https://pdf4.dev/templates/invoice-fire-protection) - [Invoice template for fitness](https://pdf4.dev/templates/invoice-fitness) - [Invoice template for flooring](https://pdf4.dev/templates/invoice-flooring) - [Invoice template for florists](https://pdf4.dev/templates/invoice-florist) - [Invoice template for food trucks](https://pdf4.dev/templates/invoice-food-truck) - [Invoice template for freelancers](https://pdf4.dev/templates/invoice-freelancer) - [Invoice template for funeral homes](https://pdf4.dev/templates/invoice-funeral-home) - [Invoice template for garage door companies](https://pdf4.dev/templates/invoice-garage-door) - [Invoice template for glass & window repair](https://pdf4.dev/templates/invoice-glass-repair) - [Invoice template for graphic design](https://pdf4.dev/templates/invoice-graphic-design) - [Invoice template for gyms & fitness centers](https://pdf4.dev/templates/invoice-gym) - [Invoice template for handyman services](https://pdf4.dev/templates/invoice-handyman) - [Invoice template for healthcare](https://pdf4.dev/templates/invoice-healthcare) - [Invoice template for home inspectors](https://pdf4.dev/templates/invoice-home-inspector) - [Invoice template for commercial hvac](https://pdf4.dev/templates/invoice-hvac-commercial) - [Invoice template for hvac](https://pdf4.dev/templates/invoice-hvac) - [Invoice template for insurance](https://pdf4.dev/templates/invoice-insurance) - [Invoice template for interior design](https://pdf4.dev/templates/invoice-interior-design) - [Invoice template for irrigation services](https://pdf4.dev/templates/invoice-irrigation) - [Invoice template for it consultants](https://pdf4.dev/templates/invoice-it-consultant) - [Invoice template for it services](https://pdf4.dev/templates/invoice-it-services) - [Invoice template for jewelers](https://pdf4.dev/templates/invoice-jeweler) - [Invoice template for landscaping](https://pdf4.dev/templates/invoice-landscaping) - [Invoice template for laundry services](https://pdf4.dev/templates/invoice-laundry-service) - [Invoice template for legal](https://pdf4.dev/templates/invoice-legal) - [Invoice template for limousine & car services](https://pdf4.dev/templates/invoice-limousine) - [Invoice template for locksmiths](https://pdf4.dev/templates/invoice-locksmith) - [Invoice template for logistics](https://pdf4.dev/templates/invoice-logistics) - [Invoice template for manufacturing](https://pdf4.dev/templates/invoice-manufacturing) - [Invoice template for marketing](https://pdf4.dev/templates/invoice-marketing) - [Invoice template for massage therapists](https://pdf4.dev/templates/invoice-massage-therapist) - [Invoice template for mobile mechanics](https://pdf4.dev/templates/invoice-mobile-mechanic) - [Invoice template for moving services](https://pdf4.dev/templates/invoice-moving) - [Invoice template for music schools](https://pdf4.dev/templates/invoice-music-school) - [Invoice template for music](https://pdf4.dev/templates/invoice-music) - [Invoice template for notary services](https://pdf4.dev/templates/invoice-notary) - [Invoice template for nursing homes](https://pdf4.dev/templates/invoice-nursing-home) - [Invoice template for nutritionists & dietitians](https://pdf4.dev/templates/invoice-nutrition) - [Invoice template for opticians & eyewear](https://pdf4.dev/templates/invoice-optician) - [Invoice template for painting](https://pdf4.dev/templates/invoice-painting) - [Invoice template for paving companies](https://pdf4.dev/templates/invoice-paving) - [Invoice template for personal chefs](https://pdf4.dev/templates/invoice-personal-chef) - [Invoice template for personal trainers](https://pdf4.dev/templates/invoice-personal-trainer) - [Invoice template for pest control](https://pdf4.dev/templates/invoice-pest-control) - [Invoice template for pet grooming](https://pdf4.dev/templates/invoice-pet-grooming) - [Invoice template for pharmacies](https://pdf4.dev/templates/invoice-pharmacy) - [Invoice template for photography](https://pdf4.dev/templates/invoice-photography) - [Invoice template for plumbing](https://pdf4.dev/templates/invoice-plumbing) - [Invoice template for pool services](https://pdf4.dev/templates/invoice-pool-service) - [Invoice template for pressure washing](https://pdf4.dev/templates/invoice-pressure-washing) - [Invoice template for print shops](https://pdf4.dev/templates/invoice-printing) - [Invoice template for property management](https://pdf4.dev/templates/invoice-property-management) - [Invoice template for real estate](https://pdf4.dev/templates/invoice-real-estate) - [Invoice template for equipment rental](https://pdf4.dev/templates/invoice-rental-equipment) - [Invoice template for restaurants](https://pdf4.dev/templates/invoice-restaurant) - [Invoice template for retail](https://pdf4.dev/templates/invoice-retail) - [Invoice template for roofing](https://pdf4.dev/templates/invoice-roofing) - [Invoice template for saas companies](https://pdf4.dev/templates/invoice-saas) - [Invoice template for security services](https://pdf4.dev/templates/invoice-security) - [Invoice template for seo agencies](https://pdf4.dev/templates/invoice-seo-agency) - [Invoice template for sign companies](https://pdf4.dev/templates/invoice-signage) - [Invoice template for solar energy](https://pdf4.dev/templates/invoice-solar) - [Invoice template for spas & wellness centers](https://pdf4.dev/templates/invoice-spa) - [Invoice template for staffing agencies](https://pdf4.dev/templates/invoice-staffing) - [Invoice template for surveyors](https://pdf4.dev/templates/invoice-surveyor) - [Invoice template for tailors & alterations](https://pdf4.dev/templates/invoice-tailor) - [Invoice template for tattoo studios](https://pdf4.dev/templates/invoice-tattoo) - [Invoice template for taxi and rideshare](https://pdf4.dev/templates/invoice-taxi) - [Invoice template for therapy](https://pdf4.dev/templates/invoice-therapy) - [Invoice template for towing](https://pdf4.dev/templates/invoice-towing) - [Invoice template for translation](https://pdf4.dev/templates/invoice-translation) - [Invoice template for travel agencies](https://pdf4.dev/templates/invoice-travel-agency) - [Invoice template for tree services](https://pdf4.dev/templates/invoice-tree-service) - [Invoice template for trucking](https://pdf4.dev/templates/invoice-trucking) - [Invoice template for tutoring centers](https://pdf4.dev/templates/invoice-tutoring-center) - [Invoice template for tutoring](https://pdf4.dev/templates/invoice-tutoring) - [Invoice template for upholstery services](https://pdf4.dev/templates/invoice-upholstery) - [Invoice template for veterinary](https://pdf4.dev/templates/invoice-veterinary) - [Invoice template for videography](https://pdf4.dev/templates/invoice-videography) - [Invoice template for warehousing & storage](https://pdf4.dev/templates/invoice-warehouse) - [Invoice template for waste management](https://pdf4.dev/templates/invoice-waste-management) - [Invoice template for web development](https://pdf4.dev/templates/invoice-web-development) - [Invoice template for web hosting providers](https://pdf4.dev/templates/invoice-web-hosting) - [Invoice template for wedding planners](https://pdf4.dev/templates/invoice-wedding-planner) - [Invoice template for welding services](https://pdf4.dev/templates/invoice-welding) - [Invoice template for window cleaning](https://pdf4.dev/templates/invoice-window-cleaning) - [Invoice template for yoga studios](https://pdf4.dev/templates/invoice-yoga-studio) - [Letter template for accounting](https://pdf4.dev/templates/letter-accounting) - [Letter template for agencies](https://pdf4.dev/templates/letter-agency) - [Letter template for architecture](https://pdf4.dev/templates/letter-architecture) - [Letter template for art studios & galleries](https://pdf4.dev/templates/letter-art-studio) - [Letter template for auto repair](https://pdf4.dev/templates/letter-auto-repair) - [Letter template for bookkeepers](https://pdf4.dev/templates/letter-bookkeeper) - [Letter template for bookkeeping](https://pdf4.dev/templates/letter-bookkeeping) - [Letter template for car dealerships](https://pdf4.dev/templates/letter-car-dealership) - [Letter template for chiropractors](https://pdf4.dev/templates/letter-chiropractor) - [Letter template for cleaning services](https://pdf4.dev/templates/letter-cleaning-service) - [Letter template for coaching](https://pdf4.dev/templates/letter-coaching) - [Letter template for construction](https://pdf4.dev/templates/letter-construction) - [Letter template for consultants](https://pdf4.dev/templates/letter-consultant) - [Letter template for copywriters](https://pdf4.dev/templates/letter-copywriter) - [Letter template for dance studios](https://pdf4.dev/templates/letter-dance-studio) - [Letter template for daycare](https://pdf4.dev/templates/letter-daycare) - [Letter template for dental](https://pdf4.dev/templates/letter-dental) - [Letter template for djs](https://pdf4.dev/templates/letter-dj) - [Letter template for driving schools](https://pdf4.dev/templates/letter-driving-school) - [Letter template for event venues](https://pdf4.dev/templates/letter-event-venue) - [Letter template for financial advisors](https://pdf4.dev/templates/letter-financial-advisor) - [Letter template for flooring](https://pdf4.dev/templates/letter-flooring) - [Letter template for freelancers](https://pdf4.dev/templates/letter-freelancer) - [Letter template for funeral homes](https://pdf4.dev/templates/letter-funeral-home) - [Letter template for graphic design](https://pdf4.dev/templates/letter-graphic-design) - [Letter template for gyms & fitness centers](https://pdf4.dev/templates/letter-gym) - [Letter template for handyman services](https://pdf4.dev/templates/letter-handyman) - [Letter template for healthcare](https://pdf4.dev/templates/letter-healthcare) - [Letter template for hvac](https://pdf4.dev/templates/letter-hvac) - [Letter template for insurance](https://pdf4.dev/templates/letter-insurance) - [Letter template for interior design](https://pdf4.dev/templates/letter-interior-design) - [Letter template for it consultants](https://pdf4.dev/templates/letter-it-consultant) - [Letter template for it services](https://pdf4.dev/templates/letter-it-services) - [Letter template for landscaping](https://pdf4.dev/templates/letter-landscaping) - [Letter template for legal](https://pdf4.dev/templates/letter-legal) - [Letter template for logistics](https://pdf4.dev/templates/letter-logistics) - [Letter template for manufacturing](https://pdf4.dev/templates/letter-manufacturing) - [Letter template for marketing](https://pdf4.dev/templates/letter-marketing) - [Letter template for moving services](https://pdf4.dev/templates/letter-moving) - [Letter template for music schools](https://pdf4.dev/templates/letter-music-school) - [Letter template for nonprofits](https://pdf4.dev/templates/letter-nonprofit) - [Letter template for notary services](https://pdf4.dev/templates/letter-notary) - [Letter template for nursing homes](https://pdf4.dev/templates/letter-nursing-home) - [Letter template for nutritionists & dietitians](https://pdf4.dev/templates/letter-nutrition) - [Letter template for painting](https://pdf4.dev/templates/letter-painting) - [Letter template for personal chefs](https://pdf4.dev/templates/letter-personal-chef) - [Letter template for pest control](https://pdf4.dev/templates/letter-pest-control) - [Letter template for pet grooming](https://pdf4.dev/templates/letter-pet-grooming) - [Letter template for plumbing](https://pdf4.dev/templates/letter-plumbing) - [Letter template for print shops](https://pdf4.dev/templates/letter-printing) - [Letter template for property management](https://pdf4.dev/templates/letter-property-management) - [Letter template for real estate](https://pdf4.dev/templates/letter-real-estate) - [Letter template for roofing](https://pdf4.dev/templates/letter-roofing) - [Letter template for saas companies](https://pdf4.dev/templates/letter-saas) - [Letter template for security services](https://pdf4.dev/templates/letter-security) - [Letter template for seo agencies](https://pdf4.dev/templates/letter-seo-agency) - [Letter template for solar energy](https://pdf4.dev/templates/letter-solar) - [Letter template for staffing agencies](https://pdf4.dev/templates/letter-staffing) - [Letter template for therapy](https://pdf4.dev/templates/letter-therapy) - [Letter template for translation](https://pdf4.dev/templates/letter-translation) - [Letter template for travel agencies](https://pdf4.dev/templates/letter-travel-agency) - [Letter template for trucking](https://pdf4.dev/templates/letter-trucking) - [Letter template for tutoring centers](https://pdf4.dev/templates/letter-tutoring-center) - [Letter template for videography](https://pdf4.dev/templates/letter-videography) - [Letter template for web development](https://pdf4.dev/templates/letter-web-development) - [Letter template for wedding planners](https://pdf4.dev/templates/letter-wedding-planner) - [Proposal template for agencies](https://pdf4.dev/templates/proposal-agency) - [Proposal template for appliance repair](https://pdf4.dev/templates/proposal-appliance-repair) - [Proposal template for architecture](https://pdf4.dev/templates/proposal-architecture) - [Proposal template for bakeries](https://pdf4.dev/templates/proposal-bakery) - [Proposal template for bookkeepers](https://pdf4.dev/templates/proposal-bookkeeper) - [Proposal template for cabinet makers](https://pdf4.dev/templates/proposal-cabinet-maker) - [Proposal template for car dealerships](https://pdf4.dev/templates/proposal-car-dealership) - [Proposal template for carpet cleaning](https://pdf4.dev/templates/proposal-carpet-cleaning) - [Proposal template for catering](https://pdf4.dev/templates/proposal-catering) - [Proposal template for cleaning services](https://pdf4.dev/templates/proposal-cleaning-service) - [Proposal template for coaching](https://pdf4.dev/templates/proposal-coaching) - [Proposal template for concrete contractors](https://pdf4.dev/templates/proposal-concrete) - [Proposal template for construction](https://pdf4.dev/templates/proposal-construction) - [Proposal template for consultants](https://pdf4.dev/templates/proposal-consultant) - [Proposal template for copywriters](https://pdf4.dev/templates/proposal-copywriter) - [Proposal template for demolition companies](https://pdf4.dev/templates/proposal-demolition) - [Proposal template for djs](https://pdf4.dev/templates/proposal-dj) - [Proposal template for drone services](https://pdf4.dev/templates/proposal-drone-service) - [Proposal template for electricians](https://pdf4.dev/templates/proposal-electrician) - [Proposal template for elevator services](https://pdf4.dev/templates/proposal-elevator-service) - [Proposal template for event planning](https://pdf4.dev/templates/proposal-event-planning) - [Proposal template for event venues](https://pdf4.dev/templates/proposal-event-venue) - [Proposal template for excavation companies](https://pdf4.dev/templates/proposal-excavation) - [Proposal template for fence companies](https://pdf4.dev/templates/proposal-fence-company) - [Proposal template for financial advisors](https://pdf4.dev/templates/proposal-financial-advisor) - [Proposal template for fire protection services](https://pdf4.dev/templates/proposal-fire-protection) - [Proposal template for flooring](https://pdf4.dev/templates/proposal-flooring) - [Proposal template for florists](https://pdf4.dev/templates/proposal-florist) - [Proposal template for freelancers](https://pdf4.dev/templates/proposal-freelancer) - [Proposal template for garage door companies](https://pdf4.dev/templates/proposal-garage-door) - [Proposal template for graphic design](https://pdf4.dev/templates/proposal-graphic-design) - [Proposal template for handyman services](https://pdf4.dev/templates/proposal-handyman) - [Proposal template for commercial hvac](https://pdf4.dev/templates/proposal-hvac-commercial) - [Proposal template for hvac](https://pdf4.dev/templates/proposal-hvac) - [Proposal template for interior design](https://pdf4.dev/templates/proposal-interior-design) - [Proposal template for irrigation services](https://pdf4.dev/templates/proposal-irrigation) - [Proposal template for it consultants](https://pdf4.dev/templates/proposal-it-consultant) - [Proposal template for it services](https://pdf4.dev/templates/proposal-it-services) - [Proposal template for landscaping](https://pdf4.dev/templates/proposal-landscaping) - [Proposal template for legal](https://pdf4.dev/templates/proposal-legal) - [Proposal template for marketing](https://pdf4.dev/templates/proposal-marketing) - [Proposal template for moving services](https://pdf4.dev/templates/proposal-moving) - [Proposal template for painting](https://pdf4.dev/templates/proposal-painting) - [Proposal template for paving companies](https://pdf4.dev/templates/proposal-paving) - [Proposal template for pest control](https://pdf4.dev/templates/proposal-pest-control) - [Proposal template for photography](https://pdf4.dev/templates/proposal-photography) - [Proposal template for plumbing](https://pdf4.dev/templates/proposal-plumbing) - [Proposal template for pool services](https://pdf4.dev/templates/proposal-pool-service) - [Proposal template for pressure washing](https://pdf4.dev/templates/proposal-pressure-washing) - [Proposal template for print shops](https://pdf4.dev/templates/proposal-printing) - [Proposal template for property management](https://pdf4.dev/templates/proposal-property-management) - [Proposal template for real estate](https://pdf4.dev/templates/proposal-real-estate) - [Proposal template for roofing](https://pdf4.dev/templates/proposal-roofing) - [Proposal template for security services](https://pdf4.dev/templates/proposal-security) - [Proposal template for seo agencies](https://pdf4.dev/templates/proposal-seo-agency) - [Proposal template for sign companies](https://pdf4.dev/templates/proposal-signage) - [Proposal template for solar energy](https://pdf4.dev/templates/proposal-solar) - [Proposal template for staffing agencies](https://pdf4.dev/templates/proposal-staffing) - [Proposal template for surveyors](https://pdf4.dev/templates/proposal-surveyor) - [Proposal template for tattoo studios](https://pdf4.dev/templates/proposal-tattoo) - [Proposal template for translation](https://pdf4.dev/templates/proposal-translation) - [Proposal template for travel agencies](https://pdf4.dev/templates/proposal-travel-agency) - [Proposal template for tree services](https://pdf4.dev/templates/proposal-tree-service) - [Proposal template for videography](https://pdf4.dev/templates/proposal-videography) - [Proposal template for waste management](https://pdf4.dev/templates/proposal-waste-management) - [Proposal template for web development](https://pdf4.dev/templates/proposal-web-development) - [Proposal template for web hosting providers](https://pdf4.dev/templates/proposal-web-hosting) - [Proposal template for wedding planners](https://pdf4.dev/templates/proposal-wedding-planner) - [Proposal template for window cleaning](https://pdf4.dev/templates/proposal-window-cleaning) - [Purchase order template for 3d printing services](https://pdf4.dev/templates/purchase-order-3d-printing) - [Purchase order template for appliance repair](https://pdf4.dev/templates/purchase-order-appliance-repair) - [Purchase order template for architecture](https://pdf4.dev/templates/purchase-order-architecture) - [Purchase order template for auto repair](https://pdf4.dev/templates/purchase-order-auto-repair) - [Purchase order template for bakeries](https://pdf4.dev/templates/purchase-order-bakery) - [Purchase order template for beauty salons](https://pdf4.dev/templates/purchase-order-beauty-salon) - [Purchase order template for cabinet makers](https://pdf4.dev/templates/purchase-order-cabinet-maker) - [Purchase order template for car dealerships](https://pdf4.dev/templates/purchase-order-car-dealership) - [Purchase order template for car washes](https://pdf4.dev/templates/purchase-order-car-wash) - [Purchase order template for catering](https://pdf4.dev/templates/purchase-order-catering) - [Purchase order template for concrete contractors](https://pdf4.dev/templates/purchase-order-concrete) - [Purchase order template for construction](https://pdf4.dev/templates/purchase-order-construction) - [Purchase order template for demolition companies](https://pdf4.dev/templates/purchase-order-demolition) - [Purchase order template for dental](https://pdf4.dev/templates/purchase-order-dental) - [Purchase order template for e-commerce](https://pdf4.dev/templates/purchase-order-ecommerce) - [Purchase order template for electricians](https://pdf4.dev/templates/purchase-order-electrician) - [Purchase order template for elevator services](https://pdf4.dev/templates/purchase-order-elevator-service) - [Purchase order template for excavation companies](https://pdf4.dev/templates/purchase-order-excavation) - [Purchase order template for fence companies](https://pdf4.dev/templates/purchase-order-fence-company) - [Purchase order template for fire protection services](https://pdf4.dev/templates/purchase-order-fire-protection) - [Purchase order template for flooring](https://pdf4.dev/templates/purchase-order-flooring) - [Purchase order template for food trucks](https://pdf4.dev/templates/purchase-order-food-truck) - [Purchase order template for garage door companies](https://pdf4.dev/templates/purchase-order-garage-door) - [Purchase order template for glass & window repair](https://pdf4.dev/templates/purchase-order-glass-repair) - [Purchase order template for gyms & fitness centers](https://pdf4.dev/templates/purchase-order-gym) - [Purchase order template for healthcare](https://pdf4.dev/templates/purchase-order-healthcare) - [Purchase order template for commercial hvac](https://pdf4.dev/templates/purchase-order-hvac-commercial) - [Purchase order template for hvac](https://pdf4.dev/templates/purchase-order-hvac) - [Purchase order template for irrigation services](https://pdf4.dev/templates/purchase-order-irrigation) - [Purchase order template for landscaping](https://pdf4.dev/templates/purchase-order-landscaping) - [Purchase order template for manufacturing](https://pdf4.dev/templates/purchase-order-manufacturing) - [Purchase order template for mobile mechanics](https://pdf4.dev/templates/purchase-order-mobile-mechanic) - [Purchase order template for opticians & eyewear](https://pdf4.dev/templates/purchase-order-optician) - [Purchase order template for painting](https://pdf4.dev/templates/purchase-order-painting) - [Purchase order template for paving companies](https://pdf4.dev/templates/purchase-order-paving) - [Purchase order template for pharmacies](https://pdf4.dev/templates/purchase-order-pharmacy) - [Purchase order template for plumbing](https://pdf4.dev/templates/purchase-order-plumbing) - [Purchase order template for pool services](https://pdf4.dev/templates/purchase-order-pool-service) - [Purchase order template for print shops](https://pdf4.dev/templates/purchase-order-printing) - [Purchase order template for equipment rental](https://pdf4.dev/templates/purchase-order-rental-equipment) - [Purchase order template for restaurants](https://pdf4.dev/templates/purchase-order-restaurant) - [Purchase order template for retail](https://pdf4.dev/templates/purchase-order-retail) - [Purchase order template for roofing](https://pdf4.dev/templates/purchase-order-roofing) - [Purchase order template for security services](https://pdf4.dev/templates/purchase-order-security) - [Purchase order template for solar energy](https://pdf4.dev/templates/purchase-order-solar) - [Purchase order template for warehousing & storage](https://pdf4.dev/templates/purchase-order-warehouse) - [Purchase order template for welding services](https://pdf4.dev/templates/purchase-order-welding) - [Quote template for 3d printing services](https://pdf4.dev/templates/quote-3d-printing) - [Quote template for accounting](https://pdf4.dev/templates/quote-accounting) - [Quote template for agencies](https://pdf4.dev/templates/quote-agency) - [Quote template for appliance repair](https://pdf4.dev/templates/quote-appliance-repair) - [Quote template for architecture](https://pdf4.dev/templates/quote-architecture) - [Quote template for art studios & galleries](https://pdf4.dev/templates/quote-art-studio) - [Quote template for auto repair](https://pdf4.dev/templates/quote-auto-repair) - [Quote template for bakeries](https://pdf4.dev/templates/quote-bakery) - [Quote template for beauty salons](https://pdf4.dev/templates/quote-beauty-salon) - [Quote template for bookkeepers](https://pdf4.dev/templates/quote-bookkeeper) - [Quote template for bookkeeping](https://pdf4.dev/templates/quote-bookkeeping) - [Quote template for cabinet makers](https://pdf4.dev/templates/quote-cabinet-maker) - [Quote template for car dealerships](https://pdf4.dev/templates/quote-car-dealership) - [Quote template for car washes](https://pdf4.dev/templates/quote-car-wash) - [Quote template for carpet cleaning](https://pdf4.dev/templates/quote-carpet-cleaning) - [Quote template for catering](https://pdf4.dev/templates/quote-catering) - [Quote template for cleaning services](https://pdf4.dev/templates/quote-cleaning-service) - [Quote template for coaching](https://pdf4.dev/templates/quote-coaching) - [Quote template for concrete contractors](https://pdf4.dev/templates/quote-concrete) - [Quote template for construction](https://pdf4.dev/templates/quote-construction) - [Quote template for consultants](https://pdf4.dev/templates/quote-consultant) - [Quote template for copywriters](https://pdf4.dev/templates/quote-copywriter) - [Quote template for courier services](https://pdf4.dev/templates/quote-courier) - [Quote template for data recovery services](https://pdf4.dev/templates/quote-data-recovery) - [Quote template for demolition companies](https://pdf4.dev/templates/quote-demolition) - [Quote template for dental](https://pdf4.dev/templates/quote-dental) - [Quote template for djs](https://pdf4.dev/templates/quote-dj) - [Quote template for dog walkers & pet sitters](https://pdf4.dev/templates/quote-dog-walker) - [Quote template for drone services](https://pdf4.dev/templates/quote-drone-service) - [Quote template for electricians](https://pdf4.dev/templates/quote-electrician) - [Quote template for elevator services](https://pdf4.dev/templates/quote-elevator-service) - [Quote template for engraving & trophy shops](https://pdf4.dev/templates/quote-engraving) - [Quote template for event planning](https://pdf4.dev/templates/quote-event-planning) - [Quote template for event venues](https://pdf4.dev/templates/quote-event-venue) - [Quote template for excavation companies](https://pdf4.dev/templates/quote-excavation) - [Quote template for fence companies](https://pdf4.dev/templates/quote-fence-company) - [Quote template for financial advisors](https://pdf4.dev/templates/quote-financial-advisor) - [Quote template for fire protection services](https://pdf4.dev/templates/quote-fire-protection) - [Quote template for flooring](https://pdf4.dev/templates/quote-flooring) - [Quote template for florists](https://pdf4.dev/templates/quote-florist) - [Quote template for food trucks](https://pdf4.dev/templates/quote-food-truck) - [Quote template for freelancers](https://pdf4.dev/templates/quote-freelancer) - [Quote template for funeral homes](https://pdf4.dev/templates/quote-funeral-home) - [Quote template for garage door companies](https://pdf4.dev/templates/quote-garage-door) - [Quote template for glass & window repair](https://pdf4.dev/templates/quote-glass-repair) - [Quote template for graphic design](https://pdf4.dev/templates/quote-graphic-design) - [Quote template for handyman services](https://pdf4.dev/templates/quote-handyman) - [Quote template for healthcare](https://pdf4.dev/templates/quote-healthcare) - [Quote template for home inspectors](https://pdf4.dev/templates/quote-home-inspector) - [Quote template for commercial hvac](https://pdf4.dev/templates/quote-hvac-commercial) - [Quote template for hvac](https://pdf4.dev/templates/quote-hvac) - [Quote template for insurance](https://pdf4.dev/templates/quote-insurance) - [Quote template for interior design](https://pdf4.dev/templates/quote-interior-design) - [Quote template for irrigation services](https://pdf4.dev/templates/quote-irrigation) - [Quote template for it consultants](https://pdf4.dev/templates/quote-it-consultant) - [Quote template for it services](https://pdf4.dev/templates/quote-it-services) - [Quote template for jewelers](https://pdf4.dev/templates/quote-jeweler) - [Quote template for landscaping](https://pdf4.dev/templates/quote-landscaping) - [Quote template for laundry services](https://pdf4.dev/templates/quote-laundry-service) - [Quote template for legal](https://pdf4.dev/templates/quote-legal) - [Quote template for limousine & car services](https://pdf4.dev/templates/quote-limousine) - [Quote template for locksmiths](https://pdf4.dev/templates/quote-locksmith) - [Quote template for logistics](https://pdf4.dev/templates/quote-logistics) - [Quote template for manufacturing](https://pdf4.dev/templates/quote-manufacturing) - [Quote template for marketing](https://pdf4.dev/templates/quote-marketing) - [Quote template for massage therapists](https://pdf4.dev/templates/quote-massage-therapist) - [Quote template for mobile mechanics](https://pdf4.dev/templates/quote-mobile-mechanic) - [Quote template for moving services](https://pdf4.dev/templates/quote-moving) - [Quote template for opticians & eyewear](https://pdf4.dev/templates/quote-optician) - [Quote template for painting](https://pdf4.dev/templates/quote-painting) - [Quote template for paving companies](https://pdf4.dev/templates/quote-paving) - [Quote template for personal chefs](https://pdf4.dev/templates/quote-personal-chef) - [Quote template for personal trainers](https://pdf4.dev/templates/quote-personal-trainer) - [Quote template for pest control](https://pdf4.dev/templates/quote-pest-control) - [Quote template for pet grooming](https://pdf4.dev/templates/quote-pet-grooming) - [Quote template for photography](https://pdf4.dev/templates/quote-photography) - [Quote template for plumbing](https://pdf4.dev/templates/quote-plumbing) - [Quote template for pool services](https://pdf4.dev/templates/quote-pool-service) - [Quote template for pressure washing](https://pdf4.dev/templates/quote-pressure-washing) - [Quote template for print shops](https://pdf4.dev/templates/quote-printing) - [Quote template for property management](https://pdf4.dev/templates/quote-property-management) - [Quote template for real estate](https://pdf4.dev/templates/quote-real-estate) - [Quote template for equipment rental](https://pdf4.dev/templates/quote-rental-equipment) - [Quote template for roofing](https://pdf4.dev/templates/quote-roofing) - [Quote template for saas companies](https://pdf4.dev/templates/quote-saas) - [Quote template for security services](https://pdf4.dev/templates/quote-security) - [Quote template for seo agencies](https://pdf4.dev/templates/quote-seo-agency) - [Quote template for sign companies](https://pdf4.dev/templates/quote-signage) - [Quote template for solar energy](https://pdf4.dev/templates/quote-solar) - [Quote template for spas & wellness centers](https://pdf4.dev/templates/quote-spa) - [Quote template for staffing agencies](https://pdf4.dev/templates/quote-staffing) - [Quote template for surveyors](https://pdf4.dev/templates/quote-surveyor) - [Quote template for tailors & alterations](https://pdf4.dev/templates/quote-tailor) - [Quote template for tattoo studios](https://pdf4.dev/templates/quote-tattoo) - [Quote template for towing](https://pdf4.dev/templates/quote-towing) - [Quote template for translation](https://pdf4.dev/templates/quote-translation) - [Quote template for travel agencies](https://pdf4.dev/templates/quote-travel-agency) - [Quote template for tree services](https://pdf4.dev/templates/quote-tree-service) - [Quote template for trucking](https://pdf4.dev/templates/quote-trucking) - [Quote template for upholstery services](https://pdf4.dev/templates/quote-upholstery) - [Quote template for videography](https://pdf4.dev/templates/quote-videography) - [Quote template for warehousing & storage](https://pdf4.dev/templates/quote-warehouse) - [Quote template for waste management](https://pdf4.dev/templates/quote-waste-management) - [Quote template for web development](https://pdf4.dev/templates/quote-web-development) - [Quote template for web hosting providers](https://pdf4.dev/templates/quote-web-hosting) - [Quote template for wedding planners](https://pdf4.dev/templates/quote-wedding-planner) - [Quote template for welding services](https://pdf4.dev/templates/quote-welding) - [Quote template for window cleaning](https://pdf4.dev/templates/quote-window-cleaning) - [Receipt template for 3d printing services](https://pdf4.dev/templates/receipt-3d-printing) - [Receipt template for accounting](https://pdf4.dev/templates/receipt-accounting) - [Receipt template for agencies](https://pdf4.dev/templates/receipt-agency) - [Receipt template for appliance repair](https://pdf4.dev/templates/receipt-appliance-repair) - [Receipt template for architecture](https://pdf4.dev/templates/receipt-architecture) - [Receipt template for art studios & galleries](https://pdf4.dev/templates/receipt-art-studio) - [Receipt template for auto repair](https://pdf4.dev/templates/receipt-auto-repair) - [Receipt template for bakeries](https://pdf4.dev/templates/receipt-bakery) - [Receipt template for beauty salons](https://pdf4.dev/templates/receipt-beauty-salon) - [Receipt template for bookkeepers](https://pdf4.dev/templates/receipt-bookkeeper) - [Receipt template for bookkeeping](https://pdf4.dev/templates/receipt-bookkeeping) - [Receipt template for cabinet makers](https://pdf4.dev/templates/receipt-cabinet-maker) - [Receipt template for car dealerships](https://pdf4.dev/templates/receipt-car-dealership) - [Receipt template for car washes](https://pdf4.dev/templates/receipt-car-wash) - [Receipt template for carpet cleaning](https://pdf4.dev/templates/receipt-carpet-cleaning) - [Receipt template for catering](https://pdf4.dev/templates/receipt-catering) - [Receipt template for chiropractors](https://pdf4.dev/templates/receipt-chiropractor) - [Receipt template for cleaning services](https://pdf4.dev/templates/receipt-cleaning-service) - [Receipt template for coaching](https://pdf4.dev/templates/receipt-coaching) - [Receipt template for concrete contractors](https://pdf4.dev/templates/receipt-concrete) - [Receipt template for construction](https://pdf4.dev/templates/receipt-construction) - [Receipt template for consultants](https://pdf4.dev/templates/receipt-consultant) - [Receipt template for copywriters](https://pdf4.dev/templates/receipt-copywriter) - [Receipt template for courier services](https://pdf4.dev/templates/receipt-courier) - [Receipt template for dance studios](https://pdf4.dev/templates/receipt-dance-studio) - [Receipt template for data recovery services](https://pdf4.dev/templates/receipt-data-recovery) - [Receipt template for daycare](https://pdf4.dev/templates/receipt-daycare) - [Receipt template for demolition companies](https://pdf4.dev/templates/receipt-demolition) - [Receipt template for dental](https://pdf4.dev/templates/receipt-dental) - [Receipt template for djs](https://pdf4.dev/templates/receipt-dj) - [Receipt template for dog walkers & pet sitters](https://pdf4.dev/templates/receipt-dog-walker) - [Receipt template for driving schools](https://pdf4.dev/templates/receipt-driving-school) - [Receipt template for drone services](https://pdf4.dev/templates/receipt-drone-service) - [Receipt template for e-commerce](https://pdf4.dev/templates/receipt-ecommerce) - [Receipt template for education](https://pdf4.dev/templates/receipt-education) - [Receipt template for electricians](https://pdf4.dev/templates/receipt-electrician) - [Receipt template for elevator services](https://pdf4.dev/templates/receipt-elevator-service) - [Receipt template for engraving & trophy shops](https://pdf4.dev/templates/receipt-engraving) - [Receipt template for event planning](https://pdf4.dev/templates/receipt-event-planning) - [Receipt template for event venues](https://pdf4.dev/templates/receipt-event-venue) - [Receipt template for excavation companies](https://pdf4.dev/templates/receipt-excavation) - [Receipt template for fence companies](https://pdf4.dev/templates/receipt-fence-company) - [Receipt template for financial advisors](https://pdf4.dev/templates/receipt-financial-advisor) - [Receipt template for fire protection services](https://pdf4.dev/templates/receipt-fire-protection) - [Receipt template for fitness](https://pdf4.dev/templates/receipt-fitness) - [Receipt template for flooring](https://pdf4.dev/templates/receipt-flooring) - [Receipt template for florists](https://pdf4.dev/templates/receipt-florist) - [Receipt template for food trucks](https://pdf4.dev/templates/receipt-food-truck) - [Receipt template for freelancers](https://pdf4.dev/templates/receipt-freelancer) - [Receipt template for funeral homes](https://pdf4.dev/templates/receipt-funeral-home) - [Receipt template for garage door companies](https://pdf4.dev/templates/receipt-garage-door) - [Receipt template for glass & window repair](https://pdf4.dev/templates/receipt-glass-repair) - [Receipt template for graphic design](https://pdf4.dev/templates/receipt-graphic-design) - [Receipt template for gyms & fitness centers](https://pdf4.dev/templates/receipt-gym) - [Receipt template for handyman services](https://pdf4.dev/templates/receipt-handyman) - [Receipt template for healthcare](https://pdf4.dev/templates/receipt-healthcare) - [Receipt template for home inspectors](https://pdf4.dev/templates/receipt-home-inspector) - [Receipt template for commercial hvac](https://pdf4.dev/templates/receipt-hvac-commercial) - [Receipt template for hvac](https://pdf4.dev/templates/receipt-hvac) - [Receipt template for insurance](https://pdf4.dev/templates/receipt-insurance) - [Receipt template for interior design](https://pdf4.dev/templates/receipt-interior-design) - [Receipt template for irrigation services](https://pdf4.dev/templates/receipt-irrigation) - [Receipt template for it consultants](https://pdf4.dev/templates/receipt-it-consultant) - [Receipt template for it services](https://pdf4.dev/templates/receipt-it-services) - [Receipt template for jewelers](https://pdf4.dev/templates/receipt-jeweler) - [Receipt template for landscaping](https://pdf4.dev/templates/receipt-landscaping) - [Receipt template for laundry services](https://pdf4.dev/templates/receipt-laundry-service) - [Receipt template for legal](https://pdf4.dev/templates/receipt-legal) - [Receipt template for limousine & car services](https://pdf4.dev/templates/receipt-limousine) - [Receipt template for locksmiths](https://pdf4.dev/templates/receipt-locksmith) - [Receipt template for logistics](https://pdf4.dev/templates/receipt-logistics) - [Receipt template for manufacturing](https://pdf4.dev/templates/receipt-manufacturing) - [Receipt template for marketing](https://pdf4.dev/templates/receipt-marketing) - [Receipt template for massage therapists](https://pdf4.dev/templates/receipt-massage-therapist) - [Receipt template for mobile mechanics](https://pdf4.dev/templates/receipt-mobile-mechanic) - [Receipt template for moving services](https://pdf4.dev/templates/receipt-moving) - [Receipt template for music schools](https://pdf4.dev/templates/receipt-music-school) - [Receipt template for music](https://pdf4.dev/templates/receipt-music) - [Receipt template for nonprofits](https://pdf4.dev/templates/receipt-nonprofit) - [Receipt template for notary services](https://pdf4.dev/templates/receipt-notary) - [Receipt template for nursing homes](https://pdf4.dev/templates/receipt-nursing-home) - [Receipt template for nutritionists & dietitians](https://pdf4.dev/templates/receipt-nutrition) - [Receipt template for opticians & eyewear](https://pdf4.dev/templates/receipt-optician) - [Receipt template for painting](https://pdf4.dev/templates/receipt-painting) - [Receipt template for paving companies](https://pdf4.dev/templates/receipt-paving) - [Receipt template for personal chefs](https://pdf4.dev/templates/receipt-personal-chef) - [Receipt template for personal trainers](https://pdf4.dev/templates/receipt-personal-trainer) - [Receipt template for pest control](https://pdf4.dev/templates/receipt-pest-control) - [Receipt template for pet grooming](https://pdf4.dev/templates/receipt-pet-grooming) - [Receipt template for pharmacies](https://pdf4.dev/templates/receipt-pharmacy) - [Receipt template for photography](https://pdf4.dev/templates/receipt-photography) - [Receipt template for plumbing](https://pdf4.dev/templates/receipt-plumbing) - [Receipt template for pool services](https://pdf4.dev/templates/receipt-pool-service) - [Receipt template for pressure washing](https://pdf4.dev/templates/receipt-pressure-washing) - [Receipt template for print shops](https://pdf4.dev/templates/receipt-printing) - [Receipt template for property management](https://pdf4.dev/templates/receipt-property-management) - [Receipt template for real estate](https://pdf4.dev/templates/receipt-real-estate) - [Receipt template for equipment rental](https://pdf4.dev/templates/receipt-rental-equipment) - [Receipt template for restaurants](https://pdf4.dev/templates/receipt-restaurant) - [Receipt template for retail](https://pdf4.dev/templates/receipt-retail) - [Receipt template for roofing](https://pdf4.dev/templates/receipt-roofing) - [Receipt template for saas companies](https://pdf4.dev/templates/receipt-saas) - [Receipt template for security services](https://pdf4.dev/templates/receipt-security) - [Receipt template for seo agencies](https://pdf4.dev/templates/receipt-seo-agency) - [Receipt template for sign companies](https://pdf4.dev/templates/receipt-signage) - [Receipt template for solar energy](https://pdf4.dev/templates/receipt-solar) - [Receipt template for spas & wellness centers](https://pdf4.dev/templates/receipt-spa) - [Receipt template for staffing agencies](https://pdf4.dev/templates/receipt-staffing) - [Receipt template for surveyors](https://pdf4.dev/templates/receipt-surveyor) - [Receipt template for tailors & alterations](https://pdf4.dev/templates/receipt-tailor) - [Receipt template for tattoo studios](https://pdf4.dev/templates/receipt-tattoo) - [Receipt template for taxi and rideshare](https://pdf4.dev/templates/receipt-taxi) - [Receipt template for therapy](https://pdf4.dev/templates/receipt-therapy) - [Receipt template for towing](https://pdf4.dev/templates/receipt-towing) - [Receipt template for translation](https://pdf4.dev/templates/receipt-translation) - [Receipt template for travel agencies](https://pdf4.dev/templates/receipt-travel-agency) - [Receipt template for tree services](https://pdf4.dev/templates/receipt-tree-service) - [Receipt template for trucking](https://pdf4.dev/templates/receipt-trucking) - [Receipt template for tutoring centers](https://pdf4.dev/templates/receipt-tutoring-center) - [Receipt template for tutoring](https://pdf4.dev/templates/receipt-tutoring) - [Receipt template for upholstery services](https://pdf4.dev/templates/receipt-upholstery) - [Receipt template for veterinary](https://pdf4.dev/templates/receipt-veterinary) - [Receipt template for videography](https://pdf4.dev/templates/receipt-videography) - [Receipt template for warehousing & storage](https://pdf4.dev/templates/receipt-warehouse) - [Receipt template for waste management](https://pdf4.dev/templates/receipt-waste-management) - [Receipt template for web development](https://pdf4.dev/templates/receipt-web-development) - [Receipt template for web hosting providers](https://pdf4.dev/templates/receipt-web-hosting) - [Receipt template for wedding planners](https://pdf4.dev/templates/receipt-wedding-planner) - [Receipt template for welding services](https://pdf4.dev/templates/receipt-welding) - [Receipt template for window cleaning](https://pdf4.dev/templates/receipt-window-cleaning) - [Receipt template for yoga studios](https://pdf4.dev/templates/receipt-yoga-studio) - [Report template for accounting](https://pdf4.dev/templates/report-accounting) - [Report template for agencies](https://pdf4.dev/templates/report-agency) - [Report template for bookkeepers](https://pdf4.dev/templates/report-bookkeeper) - [Report template for bookkeeping](https://pdf4.dev/templates/report-bookkeeping) - [Report template for coaching](https://pdf4.dev/templates/report-coaching) - [Report template for construction](https://pdf4.dev/templates/report-construction) - [Report template for consultants](https://pdf4.dev/templates/report-consultant) - [Report template for data recovery services](https://pdf4.dev/templates/report-data-recovery) - [Report template for demolition companies](https://pdf4.dev/templates/report-demolition) - [Report template for drone services](https://pdf4.dev/templates/report-drone-service) - [Report template for education](https://pdf4.dev/templates/report-education) - [Report template for elevator services](https://pdf4.dev/templates/report-elevator-service) - [Report template for event planning](https://pdf4.dev/templates/report-event-planning) - [Report template for financial advisors](https://pdf4.dev/templates/report-financial-advisor) - [Report template for fire protection services](https://pdf4.dev/templates/report-fire-protection) - [Report template for healthcare](https://pdf4.dev/templates/report-healthcare) - [Report template for home inspectors](https://pdf4.dev/templates/report-home-inspector) - [Report template for commercial hvac](https://pdf4.dev/templates/report-hvac-commercial) - [Report template for insurance](https://pdf4.dev/templates/report-insurance) - [Report template for it consultants](https://pdf4.dev/templates/report-it-consultant) - [Report template for it services](https://pdf4.dev/templates/report-it-services) - [Report template for landscaping](https://pdf4.dev/templates/report-landscaping) - [Report template for legal](https://pdf4.dev/templates/report-legal) - [Report template for logistics](https://pdf4.dev/templates/report-logistics) - [Report template for manufacturing](https://pdf4.dev/templates/report-manufacturing) - [Report template for marketing](https://pdf4.dev/templates/report-marketing) - [Report template for nonprofits](https://pdf4.dev/templates/report-nonprofit) - [Report template for nursing homes](https://pdf4.dev/templates/report-nursing-home) - [Report template for nutritionists & dietitians](https://pdf4.dev/templates/report-nutrition) - [Report template for pest control](https://pdf4.dev/templates/report-pest-control) - [Report template for photography](https://pdf4.dev/templates/report-photography) - [Report template for pool services](https://pdf4.dev/templates/report-pool-service) - [Report template for property management](https://pdf4.dev/templates/report-property-management) - [Report template for real estate](https://pdf4.dev/templates/report-real-estate) - [Report template for saas companies](https://pdf4.dev/templates/report-saas) - [Report template for seo agencies](https://pdf4.dev/templates/report-seo-agency) - [Report template for staffing agencies](https://pdf4.dev/templates/report-staffing) - [Report template for surveyors](https://pdf4.dev/templates/report-surveyor) - [Report template for tutoring centers](https://pdf4.dev/templates/report-tutoring-center) - [Report template for warehousing & storage](https://pdf4.dev/templates/report-warehouse) - [Report template for waste management](https://pdf4.dev/templates/report-waste-management) - [Report template for web hosting providers](https://pdf4.dev/templates/report-web-hosting) ## Pricing Free tier: 50 credits on signup (1 credit = 1 PDF render). No per-document fees. Self-hostable via Docker for unlimited usage. ## Blog - [AI document generation: complete guide for developers (2026)](https://pdf4.dev/blog/ai-document-generation-complete-guide): AI document generation lets you create PDFs, invoices, and reports from natural language prompts. Full guide covering MCP, LLM workflows, and production APIs. - [AI invoice generator: build one with Claude and PDF4.dev in 10 minutes](https://pdf4.dev/blog/ai-powered-invoice-generation): Generate professional PDF invoices with AI using Claude and PDF4.dev. Full tutorial with Node.js code, Handlebars templates, and MCP integration examples. - [Anthropic Agent Skills explained, with a PDF generation example](https://pdf4.dev/blog/anthropic-agent-skills-pdf-generation): What Agent Skills are, how they differ from MCP servers and system prompts, and a worked example of shipping a Skill that generates PDFs from prompts. - [Batch PDF generation at scale: concurrency, queues, and memory (Node.js guide)](https://pdf4.dev/blog/batch-pdf-generation-api): Generate 10,000 PDFs without crashing your server. Concurrency limits, queue patterns, memory budgets, retries, and ZIP delivery for batch PDF generation in Node.js. - [Best PDF generation APIs in 2026: a developer comparison](https://pdf4.dev/blog/best-pdf-generation-apis-2026-compared): Compare the best PDF generation APIs in 2026: PDF4.dev, PDFMonkey, DocRaptor, Gotenberg, and wkhtmltopdf. Pricing, features, and code examples. - [Best PDF-to-Word converters 2026: tested on real documents](https://pdf4.dev/blog/pdf-to-word-converters-comparison-2026): Side-by-side test of the best PDF-to-Word converters in 2026: Adobe, LibreOffice, pdf2docx, ABBYY, Google Docs. Accuracy, cost, batch automation. - [Best PDFMonkey alternatives in 2026: honest comparison](https://pdf4.dev/blog/pdfmonkey-alternatives-2026): Looking for a PDFMonkey alternative? Side-by-side of Doppio, APITemplate, CraftMyPDF, DocRaptor, PDF4.dev. Pricing, templates, API, free tier. - [Best PDFShift alternatives in 2026: 5 options compared](https://pdf4.dev/blog/pdfshift-alternatives-2026): Looking for a PDFShift alternative? PDF4.dev, Doppio, APITemplate, DocRaptor, and Gotenberg compared on pricing model, templates, free tier, and API design. - [Build a Stripe PDF invoice generator with webhooks (working repo)](https://pdf4.dev/blog/stripe-pdf-invoice-generator-tutorial): Build a custom Stripe PDF invoice flow with webhooks: Stripe payment.succeeded → render branded PDF via PDF4.dev → email link. Full working repo, 80 lines. - [Can Claude generate PDFs? Yes, natively. When you still need an API](https://pdf4.dev/blog/claude-creates-pdfs-natively-when-do-you-still-need-an-api): Yes, Claude can create PDFs natively since April 2026. What it handles well, where it fails (bulk, latency, pixel-perfect layout), and when a PDF API wins. - [ChatGPT vs Claude vs Gemini vs Perplexity for PDFs: 2026 benchmark](https://pdf4.dev/blog/chatgpt-claude-gemini-pdf-comparison): Side-by-side benchmark of ChatGPT, Claude, Gemini, and Perplexity reading the same 50-page PDF. Cost, latency, citation accuracy, file-size caps. - [chrome-headless-shell vs full Chromium: which to install for PDF in 2026](https://pdf4.dev/blog/chrome-headless-shell-vs-puppeteer-chromium-pdf): Chrome 132 removed the old headless mode. When chrome-headless-shell is right for PDF rendering, when it breaks, and how Puppeteer and Playwright choose. - [Cloudflare Project Think: can a sandboxed agent generate a PDF?](https://pdf4.dev/blog/cloudflare-project-think-agent-pdf-sandbox): Cloudflare Project Think launched durable agents with sandboxed JS workers and no network by default. We test what PDF generation patterns survive. - [Complete guide to PDF conversion: every format, every method (2026)](https://pdf4.dev/blog/complete-guide-pdf-conversion): PDF conversion explained: convert PDF to JPG, PNG, Word, HTML and more. Covers free browser tools, Python, Node.js, and command-line methods. Updated 2026. - [Convert PDF to Word in Python: pdf2docx from install to batch (2026)](https://pdf4.dev/blog/convert-pdf-to-word-python): Convert PDF to DOCX in Python with pdf2docx: Converter API, convert(start, end, pages), multiprocessing, tables, plus LibreOffice and OCR for scans. - [CSS print styles: the complete guide for PDF generation](https://pdf4.dev/blog/css-print-styles-pdf-guide): Master @media print, @page margins, page breaks, widows/orphans, and table headers. Interactive demos show each CSS property in action. - [CVE-2026-1592: stored XSS in Foxit PDF Editor Cloud's New Layer feature](https://pdf4.dev/blog/foxit-pdf-editor-cve-2026-1592-stored-xss-cloud): CVE-2026-1592 is a stored XSS in Foxit PDF Editor Cloud's Create New Layer. CVSS 6.3, patched Feb 2026. What it means for teams sharing PDFs across orgs. - [CVE-2026-23869: a developer's guide to the Next.js RSC DoS](https://pdf4.dev/blog/nextjs-cve-2026-23869-react-server-components-dos): CVE-2026-23869 (CVSS 7.5) lets a single HTTP request burn a minute of CPU on any Next.js App Router endpoint. Detect, patch, and harden your PDF pipeline. - [CVE-2026-2441: your Playwright HTML-to-PDF pipeline is still vulnerable](https://pdf4.dev/blog/playwright-cve-2026-2441-chromium-css-uaf): CVE-2026-2441 is an actively exploited Chromium CSS use-after-free, fixed in Chrome 145.0.7632.75. Playwright bundles older Chromium for weeks. Detect, patch, harden. - [CVE-2026-25755: jsPDF object injection turns addJS into an AcroJS bypass](https://pdf4.dev/blog/jspdf-cve-2026-25755-object-injection-acrojs-bypass): CVE-2026-25755 in jsPDF lets attacker strings break out of addJS() and inject PDF objects, bypassing the AcroJS sandbox. CVSS 8.8, fixed in jspdf 4.2.0. - [CVE-2026-34621: Adobe Acrobat zero-day exploited via crafted PDFs](https://pdf4.dev/blog/adobe-acrobat-cve-2026-34621-prototype-pollution-pdf-zero-day): CVE-2026-34621 is a prototype pollution zero-day in Adobe Acrobat and Reader, exploited in the wild since December 2025. CISA KEV deadline was April 27, 2026. Patch, mitigations, and what server-side PDF pipelines should change today. - [CVE-2026-42593: Gotenberg watermark and stamp routes leak arbitrary PDFs](https://pdf4.dev/blog/gotenberg-cve-2026-42593-watermark-stamp-arbitrary-read): CVE-2026-42593 is an unauthenticated arbitrary PDF read in Gotenberg 8.31.0 and earlier, exposed by stampExpression and watermarkExpression on six conversion routes. Self-hosters affected, managed APIs unaffected. - [CVE-2026-4430: LibreOffice OOXML overflow breaks headless DOCX-to-PDF](https://pdf4.dev/blog/libreoffice-cve-2026-4430-ooxml-heap-overflow-headless-converter): CVE-2026-4430 is an OOXML salt-mismatch out-of-bounds write in LibreOffice, fixed in 26.2.3 / 25.8.7. Why headless soffice in production needs sandboxing now. - [CVE-2026-44439: SSRF in HTML-to-PDF is an underrated whole class](https://pdf4.dev/blog/cve-2026-44439-playwright-capture-ssrf-html-to-pdf): CVE-2026-44439 lets attacker HTML reach private IPs and file:// URLs during page capture. Every HTML-to-PDF API has this exposure. Detect, mitigate, harden. - [CVE-2026-5287: a developer's guide to the Chromium PDF use-after-free](https://pdf4.dev/blog/chromium-pdf-cve-2026-5287-developer-guide): CVE-2026-5287 is a high-severity use-after-free in Chromium's PDF engine, fixed in Chrome 146.0.7680.178. Detect, patch, and harden Puppeteer, Playwright, Docker, and Lambda. - [CVE-2026-8000: ChromeDriver RCE puts CI PDF pipelines at risk](https://pdf4.dev/blog/chromedriver-cve-2026-8000-rce-ci-headless-testing): CVE-2026-8000 lets a crafted HTML page take over Selenium Grid + ChromeDriver on Windows. Chrome 148.0.7778.96 patches it. APT exploit confirmed. - [Design PDFs with Claude, no code, just conversation](https://pdf4.dev/blog/design-pdfs-with-claude): Use Claude + PDF4.dev MCP to design invoices, certificates, and reports through natural language. A complete walkthrough from blank page to production-ready PDF. - [Dompdf vs mPDF: PHP HTML to PDF compared (2026)](https://pdf4.dev/blog/dompdf-vs-mpdf): Dompdf and mPDF both turn HTML into PDF in pure PHP. CSS support, fonts, tables, performance and which one to pick, plus when a browser engine wins. - [EU e-invoicing mandates 2026: a developer guide](https://pdf4.dev/blog/eu-e-invoicing-mandates-2026-developer-guide): Belgium, Poland and France flip mandatory B2B e-invoicing in 2026. What developers need to ship: EN 16931 XML, Factur-X PDF/A-3, KSeF FA(3), Peppol BIS 3.0. - [Factur-X and ZUGFeRD: the September 2026 e-invoicing deadline in France](https://pdf4.dev/blog/factur-x-zugferd-pdf-api-france-september-2026): France flips B2B e-invoicing on September 1, 2026. Practical guide to Factur-X 1.07.3, ZUGFeRD 2.3.3, profile selection, CII XML, and PDF/A-3 embedding. - [Generate fillable PDF forms from HTML: AcroForm, pdf-lib, and the API](https://pdf4.dev/blog/fillable-pdf-forms-from-html): HTML forms do not auto-become PDF forms when you print. Here are the three working paths to ship interactive, fillable PDFs from a code-first workflow. - [Generate PDF from HTML in Go (2026): chromedp, Rod, or zero-Chromium API](https://pdf4.dev/blog/generate-pdf-from-html-go): Generate PDFs from HTML in Golang with chromedp or Rod (full code), what +300 MB of Chromium does to your Docker image, and the zero-dependency API path. - [Generate PDF from HTML in Java: openhtmltopdf, Flying Saucer, and a PDF API](https://pdf4.dev/blog/generate-pdf-from-html-java): Generate PDFs from HTML in Java: openhtmltopdf and Flying Saucer for XHTML to PDF, Playwright for Java for full Chromium fidelity, plus a hosted PDF4.dev API. - [Generate PDFs from HTML in PHP: Dompdf, Playwright, and REST APIs compared](https://pdf4.dev/blog/generate-pdf-from-html-php): Generate PDFs from HTML in PHP using Dompdf, headless Chromium, or a REST API. Covers Laravel, Symfony, dynamic templates, fonts, and production tips. - [Generate PDFs from HTML in Python: WeasyPrint, Playwright, and PDF APIs compared](https://pdf4.dev/blog/generate-pdf-from-html-python): Generate PDFs from HTML in Python using WeasyPrint, Playwright, or a REST API. Covers Flask, FastAPI, dynamic templates, fonts, and production tips. - [Generate PDFs from HTML templates with Node.js](https://pdf4.dev/blog/generate-pdf-from-html-nodejs): Build a Node.js PDF generator using Handlebars templates and Playwright. Covers dynamic data, styling, fonts, Docker, and when a PDF API makes more sense. - [Generating accessible tagged PDFs from HTML: WCAG 2.2 and PDF/UA-2](https://pdf4.dev/blog/accessible-tagged-pdf-from-html-eaa-compliance): Developer guide to producing WCAG 2.2 and PDF/UA-2 compliant tagged PDFs from HTML for the European Accessibility Act, with veraPDF in CI and audit-passing patterns. - [Germany B2B e-invoicing January 2027: developer checklist at T-6 months](https://pdf4.dev/blog/germany-b2b-e-invoicing-january-2027-six-months-out-checklist): Germany's mandatory B2B e-invoicing for €800k+ turnover starts Jan 1 2027. XRechnung, ZUGFeRD 2.1+, Peppol BIS: which format, what to ship today. - [Gotenberg vs Playwright for HTML to PDF (2026)](https://pdf4.dev/blog/gotenberg-vs-playwright): Gotenberg is a Dockerized PDF API you self-host, Playwright is a browser-automation library you embed. Setup, fidelity, scaling and when each one fits. - [Handlebars templates for PDF generation: the complete guide](https://pdf4.dev/blog/handlebars-templates-pdf-guide): Learn how to use Handlebars as a PDF templating language. Variables, blocks, helpers, partials, escaping, and a full invoice example you can run today. - [How to add a barcode to a PDF (Code 128, EAN-13, from HTML)](https://pdf4.dev/blog/how-to-add-barcode-to-pdf): Add a barcode to a PDF from HTML using Node.js, Python, or PHP. Render it as a base64 data URI or inline SVG so it scans, with copy-paste code. - [How to add a digital signature to a PDF programmatically](https://pdf4.dev/blog/how-to-add-digital-signature-to-pdf): Digitally sign a PDF in code: the difference between a visible signature image and a cryptographic PKCS#7 signature, with Node.js and Python libraries and an honest scope. - [How to add a QR code to a PDF (HTML to PDF, with code)](https://pdf4.dev/blog/how-to-add-qr-code-to-pdf): Add a QR code to a PDF from HTML using Node.js, Python, or PHP. Embed it as a base64 data URI or inline SVG so it always renders, with copy-paste code. - [How to add a table of contents to a PDF](https://pdf4.dev/blog/how-to-add-table-of-contents-to-pdf): Add a clickable table of contents and PDF bookmarks: build it from HTML anchors when converting with Chromium, or add outline entries to an existing PDF with pdf-lib. - [How to add a watermark to a PDF (free, no upload needed)](https://pdf4.dev/blog/how-to-add-watermark-to-pdf): Add text watermarks to any PDF for free in your browser. Interactive designer, code examples with pdf-lib and Python, plus API automation. - [How to add Bates numbering to a PDF (free, programmatic)](https://pdf4.dev/blog/how-to-add-bates-numbering-to-pdf): Add Bates numbering to a PDF: stamp sequential legal page identifiers with a prefix, fixed digit count, and start value using pdf-lib in Node.js, step by step. - [How to add charts and graphs to a PDF with Chart.js (server-side, 2026)](https://pdf4.dev/blog/add-dynamic-charts-to-pdf): Add charts to a PDF with Chart.js using headless Chromium. Why JavaScript chart libraries fail in WeasyPrint and wkhtmltopdf, with working Node.js code. - [How to add clickable links to a PDF generated from HTML](https://pdf4.dev/blog/clickable-links-in-pdf-from-html): Clickable links work automatically when you convert HTML to PDF with Chromium. Add external links, internal anchors, a table of contents and bookmarks. - [How to add custom fonts to a PDF](https://pdf4.dev/blog/how-to-add-custom-fonts-to-pdf): Embed custom fonts in HTML-to-PDF rendering with Playwright, Python, and PDF4.dev. Covers Google Fonts, self-hosting, FOUT, variable fonts, and CJK. - [How to add page numbers to a PDF (free, online, no install)](https://pdf4.dev/blog/how-to-add-page-numbers-to-pdf): Add page numbers to any PDF in seconds. Free online tool, no upload required. Also covers programmatic methods using Python, Node.js, and pdf-lib. - [How to automate PDF generation with Zapier and Make.com](https://pdf4.dev/blog/automate-pdf-with-zapier-make): Step-by-step no-code guide to automating PDF generation with Zapier and Make.com. Typeform to PDF receipt, email delivery, Google Drive storage, and a full Zapier vs Make comparison. - [How to build a PDF certificate generator](https://pdf4.dev/blog/building-certificate-generator): Build a certificate generator with HTML templates, Google Fonts, and a single API call. Covers design, batch generation from CSV, watermarks, and security. - [How to compress PDF files without losing quality](https://pdf4.dev/blog/how-to-compress-pdf-without-losing-quality): Reduce PDF file size by up to 80% while maintaining readable quality. Learn how PDF compression works and the best free methods to shrink your files. - [How to compress PDF for email (under 10 MB in seconds)](https://pdf4.dev/blog/how-to-compress-pdf-for-email): Compress a PDF for email in seconds with no quality loss. Covers email size limits, free browser tools, Ghostscript, and Python one-liners. 2026 guide. - [How to connect ChatGPT to a PDF API](https://pdf4.dev/blog/connect-chatgpt-to-pdf-api): Three ways to connect ChatGPT to a PDF generation API: Custom GPT actions, the experimental MCP server support, and the Assistants API with function calling. Full OpenAPI snippet, auth setup, and signed URL delivery. - [How to connect Claude to a PDF generation API](https://pdf4.dev/blog/connect-claude-to-pdf-api): Give Claude the ability to generate PDFs: connect it to PDF4.dev over MCP, or call the REST API from a tool definition, so the model creates real documents. - [How to convert a PDF to grayscale](https://pdf4.dev/blog/how-to-convert-pdf-to-grayscale): Convert a PDF to grayscale online for free, or automate it with pdfjs + pdf-lib, PyMuPDF, Ghostscript, and ImageMagick. Covers color models and file size impact. - [How to convert a React component to PDF](https://pdf4.dev/blog/convert-react-component-to-pdf): Two ways to turn React components into PDFs: server-render JSX to HTML and print with Chromium, or use @react-pdf/renderer. Includes Tailwind, MUI, and benchmarks. - [How to convert a webpage to PDF (free, no install)](https://pdf4.dev/blog/how-to-convert-webpage-to-pdf): Convert any webpage to PDF using a free browser tool or automate with Playwright. Covers JavaScript pages, lazy loading, and bot-detection workarounds. - [How to convert CSV to PDF (Python, Node.js, or API)](https://pdf4.dev/blog/how-to-convert-csv-to-pdf): Convert CSV to PDF by mapping rows to an HTML table, then rendering with a browser engine. Python and Node.js code, formatting tips, and a hosted API path. - [How to convert Excel to PDF (LibreOffice, Python, Node.js, and API)](https://pdf4.dev/blog/how-to-convert-excel-to-pdf): Convert XLSX to PDF for free with Excel, LibreOffice CLI, Python, or Node.js. Fix fit-to-page scaling, print areas, and cut-off columns, plus batch conversion. - [How to convert HTML to PDF: complete guide (2026)](https://pdf4.dev/blog/how-to-convert-html-to-pdf-complete-guide): Convert HTML to PDF online, in the browser, or via API. Free tool, browser printing, Node.js, Python, PHP, and REST API methods compared. - [How to convert images to PDF (free, no upload needed)](https://pdf4.dev/blog/how-to-convert-images-to-pdf): Turn JPG, PNG, or multiple images into a single PDF in seconds. Free browser-based tool, no sign-up, files never leave your device. - [How to convert Markdown to PDF: the complete guide](https://pdf4.dev/blog/markdown-to-pdf-complete-guide): Convert Markdown to PDF five ways: Pandoc with LaTeX, marked plus Playwright, markdown-it plus Puppeteer, and a REST API. Covers GFM, math, mermaid, and page breaks. - [How to convert PDF to CSV (free, and programmatic with Python and Node.js)](https://pdf4.dev/blog/how-to-convert-pdf-to-csv): Convert PDF tables to CSV: free browser method, Python with Camelot and pdfplumber, Node.js with pdfjs-dist, and how to handle scanned PDFs with OCR. - [How to convert PDF to Excel (free, programmatic, accurate)](https://pdf4.dev/blog/how-to-convert-pdf-to-excel): How to convert PDF tables to Excel: best free tools, when client-side extraction works, when you need OCR, and how to automate it from Node.js or Python. - [How to convert PDF to JPG (free, high quality)](https://pdf4.dev/blog/how-to-convert-pdf-to-jpg): Convert PDF to JPG online for free without uploading files. Also covers Python, Node.js, and command line methods with JPEG quality and DPI tips. - [How to convert PDF to Markdown (Python, Node.js, and for LLM/RAG pipelines)](https://pdf4.dev/blog/how-to-convert-pdf-to-markdown): Convert PDF to Markdown with MarkItDown, Marker, and Docling in Python, pdfjs-dist in Node.js, plus how to clean output for LLM and RAG ingestion. - [How to convert PDF to PNG (high quality, free)](https://pdf4.dev/blog/how-to-convert-pdf-to-png): Convert PDF pages to high-resolution PNG images online, with Python, Node.js, or command line. Includes DPI tips for print-ready output. - [How to convert PDF to Word without losing formatting: 5 free methods (2026)](https://pdf4.dev/blog/how-to-convert-pdf-to-word): Convert PDF to editable DOCX free with Microsoft Word, Google Docs, LibreOffice, or Python pdf2docx. Which method keeps layout, tables, and equations intact. - [How to convert PowerPoint to PDF (LibreOffice, Python, Node.js, and API)](https://pdf4.dev/blog/how-to-convert-powerpoint-to-pdf): Convert PPTX to PDF for free with PowerPoint, LibreOffice CLI, Python, or Node.js. Fix missing fonts, notes pages, and slide sizing, plus batch conversion. - [How to convert SVG to PDF](https://pdf4.dev/blog/convert-svg-to-pdf): Convert SVG to PDF without losing vector quality. Compares Inkscape, rsvg-convert, Playwright, and svg2pdf.js with code, font handling, and page-fit tips. - [How to convert Word to PDF](https://pdf4.dev/blog/how-to-convert-word-to-pdf): Convert DOCX to PDF for free using Microsoft Word, LibreOffice CLI, Python, Node.js, or Google Docs API. Includes batch conversion and formatting fixes. - [How to create a PDF certificate](https://pdf4.dev/blog/how-to-create-pdf-certificate): Design and generate PDF certificates for courses, events, and HR programs. Covers layout, seals, signature lines, QR verification, batch rendering from CSV, and localization. - [How to crop a PDF](https://pdf4.dev/blog/how-to-crop-pdf): Crop a PDF page online for free, or automate it with pdf-lib, PyMuPDF, Ghostscript, and qpdf. Covers CropBox vs MediaBox and batch cropping. - [How to delete pages from a PDF (free, fast, no upload required)](https://pdf4.dev/blog/how-to-delete-pages-from-pdf): Delete pages from a PDF in seconds, free and without uploading files. Browser-based tool, Python script, Node.js API, and command-line methods covered. - [How to edit PDF metadata (title, author, keywords)](https://pdf4.dev/blog/how-to-edit-pdf-metadata): Edit PDF metadata online for free, or automate it with pdf-lib, PyMuPDF, Ghostscript, and ExifTool. Covers document info dictionary and XMP metadata. - [How to embed images in HTML to PDF (fix missing images, base64 vs URL)](https://pdf4.dev/blog/how-to-embed-images-in-html-to-pdf): Why images go missing in HTML to PDF and how to fix them: base64 data URIs, absolute URLs, waiting for load, printBackground, and CORS, with working code. - [How to extract images from a PDF (free online and programmatic methods)](https://pdf4.dev/blog/how-to-extract-images-from-pdf): Extract embedded images from any PDF, free online or with Python and JavaScript. Pull out JPEGs and PNGs at full quality, or render pages to images. - [How to extract pages from a PDF (free, no upload required)](https://pdf4.dev/blog/how-to-extract-pages-from-pdf): Save specific pages from a PDF into a new file, free and in your browser. Covers browser tool, macOS, Python, Node.js, and command-line methods. - [How to extract text from a PDF (free online and programmatic methods)](https://pdf4.dev/blog/how-to-extract-text-from-pdf): Extract text from any PDF in seconds, free and online, or automate it with JavaScript, Python, and the PDF.js API. No signup required for the free tool. - [How to fill a PDF form programmatically](https://pdf4.dev/blog/how-to-fill-pdf-form-programmatically): Fill AcroForm PDF fields in code with pdf-lib (text fields, checkboxes, dropdowns, radio groups), flatten the result, or generate a filled PDF from HTML instead. - [How to flatten a PDF (form fields, annotations, layers)](https://pdf4.dev/blog/how-to-flatten-pdf): Flatten a PDF in seconds: free online tool, no upload, plus pdf-lib, PyMuPDF, Ghostscript, and qpdf code examples for batch automation. - [How to generate a PDF from Google Forms responses](https://pdf4.dev/blog/generate-pdf-from-google-forms): Turn Google Forms submissions into PDFs automatically: an Apps Script on-submit trigger that maps responses to a template and renders a PDF, emailed or saved to Drive. - [How to generate a PDF from Google Sheets (4 methods)](https://pdf4.dev/blog/generate-pdf-from-google-sheets): Export Google Sheets data to PDF automatically: built-in export, Apps Script automation, Zapier/Make no-code workflows, and API-based generation for production use. - [How to generate a PDF from JSON data](https://pdf4.dev/blog/how-to-generate-pdf-from-json): Turn JSON into a PDF: bind the data to an HTML and Handlebars template, then render with a browser engine or a hosted PDF4.dev API. Arrays, totals and nested objects. - [How to generate a purchase order PDF (template + API)](https://pdf4.dev/blog/how-to-generate-purchase-order-pdf): Generate purchase order PDFs from an HTML template with dynamic line items, then render with a headless browser or a hosted API. Node.js and Python code. - [How to generate multilingual PDFs from HTML (Chinese, Arabic, RTL, emoji)](https://pdf4.dev/blog/multilingual-pdf-from-html): Render Chinese, Japanese, Korean, Arabic, Hebrew, RTL text, and color emoji in HTML-to-PDF. Fix tofu boxes with the right fonts, unicode-range, and dir attributes. - [How to generate PDF invoices programmatically](https://pdf4.dev/blog/how-to-generate-pdf-invoices-programmatically): Build automated invoice generation with HTML templates, dynamic data, and a single API call. Covers design, multi-language code examples, compliance, and scaling. - [How to generate PDFs from Airtable records](https://pdf4.dev/blog/generate-pdf-from-airtable): Turn Airtable records into PDFs: a script via the Airtable API, an automation script action, or a no-code n8n flow, each rendering a template to PDF. - [How to generate PDFs from Cursor with an MCP server](https://pdf4.dev/blog/pdf4dev-cursor-workflow): Wire PDF4.dev into Cursor over MCP so the AI editor can create templates and render PDFs from your codebase. One-click config, the tools exposed, and a real workflow. - [How to generate PDFs from Notion pages and databases](https://pdf4.dev/blog/generate-pdf-from-notion): Turn Notion pages and database rows into PDFs: a script via the Notion API, a no-code n8n flow, or a template render, each producing a styled PDF. - [How to generate PDFs with AI agents using MCP](https://pdf4.dev/blog/generate-pdfs-with-ai-agents-mcp): Connect Claude, ChatGPT, Cursor, or any AI agent to PDF4.dev via MCP and generate PDFs with natural language. Step-by-step setup guide with examples. - [How to generate PDFs with Google Apps Script](https://pdf4.dev/blog/pdf-generation-google-apps-script): Generate PDFs in Google Apps Script: the built-in getAs("application/pdf") for Docs and Sheets, HtmlService, or a hosted PDF4.dev API for full HTML and CSS control. - [How to insert pages into a PDF (blank page or from another file)](https://pdf4.dev/blog/how-to-insert-pages-into-pdf): Insert pages into a PDF at any position: add a blank page or copy pages from another file. Browser, Python (pypdf), Node.js (pdf-lib), and CLI methods. - [How to merge PDF files: 5 free methods](https://pdf4.dev/blog/how-to-merge-pdf-files): Merge multiple PDF files into one document for free. Compare 5 methods including browser-based tools, command-line, and programmatic approaches. - [How to mix portrait and landscape pages in one PDF (CSS and merge)](https://pdf4.dev/blog/how-to-mix-portrait-and-landscape-pages-in-pdf): Mix portrait and landscape pages in one PDF with CSS named pages and preferCSSPageSize, or render each section and merge with pdf-lib. Copy-paste code included. - [How to OCR a PDF and make scanned pages searchable (2026 guide)](https://pdf4.dev/blog/how-to-ocr-a-pdf): OCR a PDF to make scanned pages searchable: detect image-only pages, run OCRmyPDF or Tesseract, tune DPI and language packs, and batch process a whole folder. - [How to password protect a PDF (free, no Adobe needed)](https://pdf4.dev/blog/how-to-password-protect-pdf): Add a password to any PDF in seconds using free browser-based tools, Adobe Acrobat, or the command line. Files never leave your device. - [How to prevent PDF editing (permissions, flattening, and watermarks)](https://pdf4.dev/blog/how-to-prevent-pdf-editing): Restrict editing, copying, and printing in any PDF using permissions passwords, flattening, and watermarks. Free tools and code examples included. - [How to redact a PDF permanently (and why highlighting isn't enough)](https://pdf4.dev/blog/how-to-redact-pdf-permanently): Learn how to permanently redact sensitive text and images in PDFs. Covers free browser tools, Python scripts, and why simple highlighting fails security audits. - [How to remove a password from a PDF (free, no Adobe needed)](https://pdf4.dev/blog/how-to-remove-password-from-pdf): Remove a PDF password instantly in your browser or with qpdf on the command line. Files stay on your device. Works on Mac, Windows, and mobile. - [How to remove blank pages from a PDF (auto-detect, free)](https://pdf4.dev/blog/how-to-remove-blank-pages-from-pdf): Remove blank pages from a PDF automatically. Detect and delete empty pages in your browser, with Python (pypdf), or Node.js (pdf-lib and pdf.js), no upload. - [How to render right-to-left (Arabic, Hebrew) text in PDF](https://pdf4.dev/blog/how-to-render-right-to-left-arabic-hebrew-text-in-pdf): Render Arabic, Hebrew, and Persian text correctly in HTML to PDF: set dir=rtl, load a font with the right glyphs, and let Chromium shape the bidi text. - [How to reorder PDF pages (free online and programmatic methods)](https://pdf4.dev/blog/how-to-reorder-pdf-pages): Rearrange PDF pages in any order, free and in your browser, or automate page reordering with JavaScript, Python, and pdf-lib. No upload needed. - [How to repair a corrupted PDF](https://pdf4.dev/blog/how-to-repair-corrupted-pdf): Repair a corrupted PDF online for free, or automate recovery with pdf-lib, PyMuPDF, Ghostscript, and qpdf. Covers xref rebuilding and common corruption causes. - [How to resize PDF pages](https://pdf4.dev/blog/how-to-resize-pdf-pages): Resize PDF pages online for free, or automate it with pdf-lib, PyMuPDF, Ghostscript, and qpdf. Covers A4 to Letter conversion and custom dimensions. - [How to rotate PDF pages (free, no software needed)](https://pdf4.dev/blog/how-to-rotate-pdf-pages): Rotate one or all PDF pages permanently for free. Browser tool, macOS Preview, command line, and code options. Files stay on your device. - [How to split a PDF into individual pages (or custom ranges)](https://pdf4.dev/blog/how-to-split-pdf-into-individual-pages): Split any PDF into individual pages or custom page ranges for free, in your browser, from the command line, or via API. No upload required. - [How to watermark a PDF to prevent copying and unauthorized sharing](https://pdf4.dev/blog/watermark-pdf-to-prevent-copying): Use per-recipient watermarks to deter PDF leaks, create legal evidence, and trace shared documents. Code examples, tile patterns, and DRM comparison. - [How we built a client-side PDF compressor (no uploads, text stays selectable)](https://pdf4.dev/blog/how-we-built-a-client-side-pdf-compressor): Engineering deep-dive: recompressing images inside a PDF with pdf-lib, DecompressionStream, PNG predictors, and OffscreenCanvas workers, entirely in the browser. - [How we built an MCP server for PDF generation](https://pdf4.dev/blog/how-we-built-an-mcp-server-for-pdf-generation): Inside PDF4.dev's MCP server: 14 tools, 4 resources, 3 prompts, outputSchema everywhere, structured errors, and the SSOT that keeps llms.txt and the docs site in sync with the code. - [How we hardened our SSE stream for Railway and Next.js App Router](https://pdf4.dev/blog/how-we-hardened-our-sse-stream-for-railway): Real-time dashboard sync looked trivial on localhost. In production we hit Railway's 5-minute HTTP cap, a known Next.js App Router ResponseAborted crash, and EventEmitter leak warnings. Here is the exact code we ship to handle all three. - [How we render PDFs in under 300ms](https://pdf4.dev/blog/how-we-render-pdfs-in-under-300ms): Inside PDF4.dev's rendering pipeline. Singleton browser pool, Handlebars compilation cache, the thead/tfoot trick for repeating headers, and page number stamping via pdf-lib. - [HTML to PDF benchmark 2026 (Playwright vs Puppeteer vs WeasyPrint)](https://pdf4.dev/blog/html-to-pdf-benchmark-2026): Playwright vs Puppeteer vs WeasyPrint: real HTML-to-PDF latency and file size, Node.js and Python usage, macOS and Linux, plus the production gotchas inside. - [HTML to PDF benchmark Q3 2026: refreshed numbers, new contenders](https://pdf4.dev/blog/html-to-pdf-benchmark-q3-2026-update): Refreshed HTML to PDF benchmark for Q3 2026: Playwright, Puppeteer, chrome-headless-shell, WeasyPrint, Gotenberg, PDF4.dev. Cold start, warm pool, RAM. - [iLovePDF vs Smallpdf vs PDF4.dev: which free PDF tool is best in 2026?](https://pdf4.dev/blog/ilovepdf-vs-smallpdf-vs-pdf4dev): Compare iLovePDF, Smallpdf, and PDF4.dev on privacy, limits, tools, and developer features. Find the best free PDF tool for your use case in 2026. - [jsPDF vs pdfmake: client-side PDF generation compared (2026)](https://pdf4.dev/blog/jspdf-vs-pdfmake): jsPDF draws PDFs imperatively, pdfmake builds them from a declarative document definition. Features, tables, fonts, bundle size and when to pick each. - [LibreOffice headless PDF conversion: soffice --convert-to, explained](https://pdf4.dev/blog/libreoffice-headless-pdf-conversion): Automate PDF conversion with soffice --headless --convert-to: DOCX to PDF, PDF to Word, images to PDF, batch folders, parallel profiles, and Docker. - [MCP 2026 roadmap explained: what server builders should do now](https://pdf4.dev/blog/mcp-2026-roadmap-explained): The Model Context Protocol 2026 roadmap names four priorities. Here is what changes for MCP server builders, and which patterns to adopt today. - [n8n community nodes: publishing with npm provenance](https://pdf4.dev/blog/n8n-provenance-publishing-community-nodes): From May 1, 2026, every verified n8n community node must ship with npm provenance built on GitHub Actions. A four-step migration guide with the PDF4.dev worked example. - [Open source PDF to Word converters: 5 tools tested (2026)](https://pdf4.dev/blog/open-source-pdf-to-word-converters): Convert PDF to Word with open source tools: LibreOffice, pdf2docx, Calibre, and poppler compared on layout fidelity, tables, batch use, and licenses. - [PDF color spaces: RGB vs CMYK for screen and print](https://pdf4.dev/blog/pdf-color-spaces-rgb-cmyk-guide): HTML to PDF renders in RGB, but offset print shops want CMYK. Learn the difference, when each matters, and how to convert a PDF to CMYK with Ghostscript. - [PDF encryption explained: RC4, AES-128, AES-256](https://pdf4.dev/blog/pdf-encryption-explained): How PDF encryption works across RC4, AES-128, and AES-256, with the real security level of each version, known weaknesses, and which to use today. - [PDF font embedding and subsetting explained (fix missing fonts, shrink file size)](https://pdf4.dev/blog/pdf-font-embedding-and-subsetting): How PDF font embedding and subsetting work: why fonts go missing, how subsetting cuts file size, the standard 14 fonts, and how to check what is embedded. - [PDF generation best practices for production](https://pdf4.dev/blog/pdf-generation-best-practices): An operational guide to running PDF generation at scale: caching, retries, timeouts, browser pool lifecycle, memory, observability, and cost. Real numbers from the PDF4.dev production stack. - [PDF generation in .NET and C#: QuestPDF, Playwright, and PDF APIs compared](https://pdf4.dev/blog/pdf-generation-dotnet): Generate PDFs in .NET and C# with QuestPDF, Playwright for .NET, PuppeteerSharp, or a REST API. Real ASP.NET Core code, an options table, and production tips. - [PDF generation in Angular: every working option in 2026](https://pdf4.dev/blog/pdf-generation-angular): Generate PDFs in Angular: jsPDF and pdfmake on the client, html2canvas for DOM capture, a server endpoint with Playwright, plus a hosted PDF4.dev API. - [PDF generation in Astro: every working option in 2026](https://pdf4.dev/blog/pdf-generation-astro): Generate PDFs in Astro: server endpoints with Playwright or Puppeteer for HTML to PDF, client-side jsPDF, plus a hosted PDF4.dev API with no Chromium to ship. - [PDF generation in Bun: every working option in 2026](https://pdf4.dev/blog/pdf-generation-bun): How to generate PDFs in Bun in 2026: Puppeteer support, why Playwright is unofficial, pure-JS libraries with no browser, and the hosted API escape hatch. - [PDF generation in Deno: every working option in 2026](https://pdf4.dev/blog/pdf-generation-deno): Generate PDFs in Deno: Playwright and Puppeteer via npm specifiers for HTML to PDF, jsPDF and pdf-lib for drawing, plus a hosted PDF4.dev API. - [PDF generation in Django: WeasyPrint, Playwright, and a PDF API compared](https://pdf4.dev/blog/pdf-generation-django): Generate PDFs in Django: render a template, convert with WeasyPrint or Playwright, or call a PDF API from a view. Complete code, comparison, tips. - [PDF generation in Docker: Playwright, Chromium, and a lean image (2026)](https://pdf4.dev/blog/pdf-generation-docker): How to generate PDFs in Docker with Playwright or Puppeteer. Dockerfile, system dependencies, fonts, image size, zombie processes, and when to skip Chromium. - [PDF generation in Electron: printToPDF and the alternatives](https://pdf4.dev/blog/pdf-generation-electron): Generate PDFs in an Electron app: the built-in webContents.printToPDF (no dependency), Puppeteer, or a hosted PDF4.dev API for server-side rendering. - [PDF generation in Elixir: ChromicPDF, Phoenix, and a PDF API compared](https://pdf4.dev/blog/pdf-generation-elixir): Generate PDFs in Elixir and Phoenix: ChromicPDF for HTML to PDF via headless Chromium, pdf_generator, Gutenex, and a hosted PDF4.dev API, with code and tradeoffs. - [PDF generation in Express.js: every working option in 2026](https://pdf4.dev/blog/pdf-generation-express): Generate PDFs in an Express.js app: Puppeteer and Playwright for HTML to PDF, pdfkit for drawing, plus a hosted PDF4.dev API with no browser to manage. - [PDF generation in FastAPI: WeasyPrint, Playwright, and a PDF API compared](https://pdf4.dev/blog/pdf-generation-fastapi): Generate PDFs in FastAPI: render a Jinja2 template, convert with WeasyPrint or async Playwright, or call a PDF API. Full async code, comparison table, tips. - [PDF generation in Fastify: every working option in 2026](https://pdf4.dev/blog/pdf-generation-fastify): Generate PDFs in Fastify: a route returning Playwright or Puppeteer output, pdfkit for drawing, plus a hosted PDF4.dev API. With reply headers and a warm browser. - [PDF generation in Flask: WeasyPrint, Playwright, and a PDF API compared](https://pdf4.dev/blog/pdf-generation-flask): Generate PDFs in Flask: WeasyPrint and xhtml2pdf for HTML to PDF, ReportLab for drawing, Playwright for full Chromium fidelity, plus a hosted PDF4.dev API. - [PDF generation in Hono: every working option by runtime (2026)](https://pdf4.dev/blog/pdf-generation-hono): Generate PDFs in a Hono app across every runtime: Playwright on Node and Bun, pdf-lib on Cloudflare Workers, or a hosted PDF4.dev API with no browser. - [PDF generation in Laravel: every option compared in 2026](https://pdf4.dev/blog/pdf-generation-laravel): PDF generation in Laravel: Spatie Browsershot, DomPDF, Snappy, hosted APIs. Pick the right one for invoices, reports, and high-volume rendering. - [PDF generation in NestJS: every working option in 2026](https://pdf4.dev/blog/pdf-generation-nestjs): Generate PDFs in NestJS: a controller streaming Playwright or Puppeteer output, pdfkit for drawing, plus a hosted PDF4.dev API with no Chromium to manage. - [PDF generation in Next.js: a complete guide for App Router](https://pdf4.dev/blog/pdf-generation-nextjs): Generate PDFs in Next.js 14+ App Router using server actions, API routes, and Playwright. Includes React-to-PDF, dynamic templates, and PDF4.dev API examples. - [PDF generation in Nuxt: every working option in 2026](https://pdf4.dev/blog/pdf-generation-nuxt): Generate PDFs in Nuxt with a Nitro server route: Playwright or Puppeteer for HTML to PDF, jsPDF on the client, or a hosted PDF4.dev API with no Chromium to ship. - [PDF generation in Rails: every option compared in 2026](https://pdf4.dev/blog/pdf-generation-rails): PDF generation in Ruby on Rails in 2026: WickedPdf, Grover, Ferrum PDF, ChromicPDF wrappers, Prawn, hosted APIs. Pick the right one for invoices and reports. - [PDF generation in Remix: every working option in 2026](https://pdf4.dev/blog/pdf-generation-remix): Generate PDFs in Remix: resource routes with Playwright or Puppeteer for HTML to PDF, jsPDF on the client, plus a hosted PDF4.dev API with no Chromium to ship. - [PDF generation in Ruby: Prawn, Grover, and a PDF API compared](https://pdf4.dev/blog/pdf-generation-ruby): Generate PDFs in Ruby: Prawn for drawing, Grover or WickedPDF for HTML to PDF via a browser, plus a hosted PDF4.dev API. With code for each and honest tradeoffs. - [PDF generation in Rust: every working option in 2026](https://pdf4.dev/blog/pdf-generation-rust): Generate PDFs in Rust: printpdf and genpdf for drawing, headless_chrome or chromiumoxide for HTML to PDF, plus a hosted PDF4.dev API over reqwest. - [PDF generation in serverless environments: AWS Lambda, Vercel, and Cloudflare](https://pdf4.dev/blog/pdf-generation-serverless-environments): Why Playwright and serverless are a painful match. Cold starts, size limits, Cloudflare Workers, @sparticuz/chromium, and when to call an API instead. - [PDF generation in Spring Boot: every option compared in 2026](https://pdf4.dev/blog/pdf-generation-spring-boot): PDF generation in Spring Boot: OpenPDF, iText, OpenHTMLToPDF, Playwright sidecar, hosted APIs. Pick the right one for invoices, reports, and high volume. - [PDF generation in Supabase Edge Functions](https://pdf4.dev/blog/pdf-generation-supabase-edge-functions): Generate PDFs from Supabase Edge Functions: why the Deno runtime has no Chromium, using pdf-lib or jsPDF, or calling a hosted PDF4.dev API for HTML to PDF. - [PDF generation in SvelteKit: every working option in 2026](https://pdf4.dev/blog/pdf-generation-sveltekit): Generate PDFs in SvelteKit: server endpoints with Playwright or Puppeteer for HTML to PDF, jsPDF on the client, plus a hosted PDF4.dev API. - [PDF generation in Symfony: every working option in 2026](https://pdf4.dev/blog/pdf-generation-symfony): Generate PDFs in Symfony: KnpSnappyBundle with wkhtmltopdf, Dompdf and mPDF for HTML to PDF, Gotenberg for Chromium, plus a hosted PDF4.dev API. - [PDF generation in Vue and Nuxt: every working option in 2026](https://pdf4.dev/blog/pdf-generation-vue): Generate PDFs in Vue and Nuxt in 2026: client-side jsPDF, server-side Playwright in Nitro routes, and a hosted HTML-to-PDF API, with the tradeoffs. - [PDF generation on AWS Lambda: Chromium, layers, and the alternatives](https://pdf4.dev/blog/pdf-generation-aws-lambda): Generate PDFs on AWS Lambda: Playwright or Puppeteer with @sparticuz/chromium, the size and cold-start limits, plus a hosted PDF4.dev API that needs no Chromium. - [PDF generation on Cloudflare Workers: every option in 2026](https://pdf4.dev/blog/pdf-generation-cloudflare-workers): PDF generation on Cloudflare Workers in 2026: why workerd cannot run Chromium, when Browser Rendering wins, WASM alternatives, and the API escape hatch. - [PDF generation on Vercel Functions: what works and what does not](https://pdf4.dev/blog/pdf-generation-vercel-functions): Generate PDFs on Vercel: serverless functions with Playwright and @sparticuz/chromium, why the Edge runtime cannot, plus a hosted PDF4.dev API that needs no browser. - [PDF library CVEs in 2026: every H1 advisory in one place](https://pdf4.dev/blog/pdf-library-cves-2026): Every 2026 PDF-stack CVE tracked: Chromium, Playwright, jsPDF, Gotenberg, LibreOffice, pdf-image. Plus the truth about pdf-lib and browserless advisories. - [PDF paper sizes guide: A4, Letter, Legal dimensions in points, mm, inches and pixels](https://pdf4.dev/blog/pdf-paper-sizes-guide): PDF page size reference: A4, Letter, Legal and full A-series dimensions in points, mm, inches and pixels, plus how to set the page size in HTML to PDF. - [PDF vs JPG: which format to choose](https://pdf4.dev/blog/pdf-vs-jpg-which-format-to-choose): PDF or JPG? A side-by-side comparison covering photos, documents, lossy vs lossless compression, file size, color, EXIF, and print workflows. - [PDF vs PNG: when to use each format](https://pdf4.dev/blog/pdf-vs-png-when-to-use-each): PDF or PNG? A practical comparison of the two formats covering documents, images, vector vs raster, file size, transparency, and archiving. - [pdf-lib vs jsPDF vs PDFKit: JavaScript PDF libraries compared](https://pdf4.dev/blog/pdf-lib-vs-jspdf-vs-pdfkit-javascript): Honest comparison of the three main JavaScript PDF libraries: pdf-lib for manipulation, jsPDF for client-side rendering, PDFKit for server-side streaming. Feature matrix, code samples, and when to pick each. - [pdf-lib vs pdf.js: which JavaScript PDF library should you use in 2026](https://pdf4.dev/blog/pdf-lib-vs-pdfjs-guide): pdf-lib writes and edits PDFs, pdf.js reads and renders them. A side-by-side of features, bundle size, and the tasks each one is built for. - [PDF/A explained: conformance levels, requirements, and how to create archival PDFs (2026 guide)](https://pdf4.dev/blog/pdf-a-archival-standard-guide): PDF/A is ISO 19005, the archival PDF standard. Compare PDF/A-1, A-2, A-3, and A-4, see what each level requires, and convert and validate PDFs yourself. - [PDF/A explained: versions, requirements, and how to create archival files](https://pdf4.dev/blog/pdf-a-compliance-guide): PDF/A is the ISO 19005 standard for long-term PDF archival. Covers PDF/A-1, -2, and -3 differences, technical restrictions, and how to create and validate compliant files. - [PDFKit vs pdf-lib: which Node.js PDF library should you use in 2026](https://pdf4.dev/blog/pdfkit-vs-pdf-lib): PDFKit draws new PDFs from a stream, pdf-lib creates and edits existing PDFs. Features, editing support, fonts, bundle size and when to pick each in Node.js. - [Playwright headerTemplate and footerTemplate: fixing displayHeaderFooter PDFs](https://pdf4.dev/blog/playwright-pdf-header-footer-guide): How page.pdf() headerTemplate and footerTemplate actually work: 4 documented footguns fixed, plus a DOM trick for complex header and footer layouts. - [Playwright vs Puppeteer for PDF generation: a practical comparison (2026)](https://pdf4.dev/blog/playwright-vs-puppeteer-pdf): Playwright vs Puppeteer for PDF generation: API differences, CSS support, performance benchmarks, and when to use a managed PDF API instead. - [Playwright vs WeasyPrint: Python PDF generation comparison (2026 benchmark)](https://pdf4.dev/blog/playwright-vs-weasyprint): Playwright vs WeasyPrint for PDF generation in Python: measured 42 ms vs 227 ms renders, CSS and JS coverage, deploy weight, Django/Flask/FastAPI picks. - [Puppeteer vs WeasyPrint: HTML to PDF compared (2026)](https://pdf4.dev/blog/puppeteer-vs-weasyprint): Puppeteer vs WeasyPrint for HTML to PDF: Node.js Chromium versus Python CSS rendering, with real benchmark numbers, JavaScript support, and CSS coverage. - [Puppeteer vs wkhtmltopdf: which to use in 2026](https://pdf4.dev/blog/puppeteer-vs-wkhtmltopdf): Puppeteer vs wkhtmltopdf for HTML to PDF: rendering engine, CSS and JS support, deployment, and why wkhtmltopdf is now deprecated. - [react-pdf vs Playwright: which one for PDF generation in 2026?](https://pdf4.dev/blog/react-pdf-vs-playwright-pdf-generation): react-pdf vs Playwright for PDF: when to use each, what react-pdf can't do, why most React teams switch to HTML to PDF for production. - [Real-time dashboard sync](https://pdf4.dev/blog/product-update-live-dashboard-sync): pdf4.dev now updates every open dashboard tab the moment an AI agent or an API call writes a template, a component, or a PDF render log. Inside the architecture: SSE, an in-process EventEmitter bus, and the Railway and Next.js gotchas we had to work around. - [Rendering 100 invoices in 2k tokens with code execution and MCP](https://pdf4.dev/blog/code-execution-mcp-batch-pdf-rendering): Applying Anthropic's code-execution-with-MCP pattern to PDF4.dev for batch document generation. The architecture, the token math, the security model, and concrete TypeScript code. - [ReportLab vs WeasyPrint: Python PDF generation compared (2026)](https://pdf4.dev/blog/reportlab-vs-weasyprint): ReportLab draws PDFs with code, WeasyPrint renders HTML and CSS to PDF. API style, CSS support, fonts, charts and when to choose each in Python. - [The complete guide to PDF manipulation: merge, split, compress, and more](https://pdf4.dev/blog/complete-guide-pdf-manipulation): Learn how to merge, split, compress, rotate, reorder, and watermark PDF files. A comprehensive guide covering every PDF manipulation technique with free tools. - [Using LLMs to generate PDF templates from a prompt](https://pdf4.dev/blog/llm-pdf-template-generation): Turn a plain-language prompt into a reusable HTML and Handlebars PDF template with an LLM, then render it to PDF on demand. Patterns, prompts and guardrails. - [WeasyPrint vs Prince: CSS to PDF engines compared (2026)](https://pdf4.dev/blog/weasyprint-vs-prince): WeasyPrint is free and open source, Prince is commercial with deeper CSS print support. A side-by-side of CSS coverage, price, output quality and when each wins. - [WeasyPrint vs wkhtmltopdf: which HTML to PDF engine to pick in 2026](https://pdf4.dev/blog/weasyprint-vs-wkhtmltopdf): WeasyPrint vs wkhtmltopdf compared: wkhtmltopdf is archived since 2023, WeasyPrint is actively maintained pure Python. Which to use and how to migrate. - [What is the Model Context Protocol (MCP) and how to use it for PDF generation](https://pdf4.dev/blog/mcp-protocol-explained): MCP lets AI agents call external tools directly. Learn what MCP is, how the protocol works, and how to connect Claude, ChatGPT, Cursor, or VS Code to a PDF API in under 3 minutes. - [When your invoice PDF executes shell commands: prompt injection defense](https://pdf4.dev/blog/pdf-prompt-injection-ai-agents-defense-guide): Microsoft confirmed RCE chains from PDF prompt injection on May 7, 2026 (CVE-2026-25592, CVE-2026-26030). Concrete defenses for agent pipelines that ingest user-uploaded PDFs. - [Why we built PDF tools that run in your browser](https://pdf4.dev/blog/why-we-built-pdf-tools-that-run-in-your-browser): PDF4.dev's 24 free tools process files entirely client-side using pdf-lib and pdfjs-dist. No upload, no server, no privacy risk. Here is how the architecture works. - [wkhtmltopdf alternatives in 2026: the migration guide](https://pdf4.dev/blog/wkhtmltopdf-alternatives-2026): wkhtmltopdf is archived and unmaintained. Compare the best 2026 alternatives (Playwright, Puppeteer, WeasyPrint, Gotenberg) and pick a safe migration path. ## Optional - [Sign Up](https://pdf4.dev/auth/signup): Create a free account - [Sign In](https://pdf4.dev/auth/signin): Log in to dashboard