惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
量子位
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
V
Visual Studio Blog
雷峰网
雷峰网
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
7 Free PDF Tools That Never Upload Your Files — All Clien...
xueboyang1985 · 2026-05-31 · via DEV Community

xueboyang1985

Most 'free online PDF tools' make you upload your files to some server. You drag in a contract, a tax form, or a client document — and it gets sent to who-knows-where.

I built a different approach: 7 PDF tools that run entirely in your browser.

How It Works

Every tool is a single HTML file with vanilla JavaScript. When you open the page:

  1. Your browser downloads the HTML + JS (static files from GitHub Pages CDN)
  2. PDF processing libraries (pdf-lib, jsPDF, pdf.js) load from CDN
  3. You select a file — it stays in browser memory
  4. Processing happens using your browser's JavaScript engine and Canvas API
  5. The result is downloaded directly to your computer

No upload. No server. No tracking. You can disconnect from the internet after the page loads and everything still works.

The 7 Tools

1. Merge PDFs

Combine multiple PDFs into one. Drag to reorder pages before merging.

Use case: Combine scanned pages into a single document, merge contracts with appendices.

2. Split PDF

Extract specific pages or split every page into separate files. Supports page ranges (e.g. 1-5, 8, 10-12).

Use case: Pull out just the signature page from a contract, split a batch scan into individual documents.

3. Images to PDF

Convert JPG, PNG, or WebP images into a PDF. Options for page size (A4, Letter, original), orientation, and margins.

Use case: Convert photos of receipts into a single PDF expense report.

4. PDF to Images

Extract pages from a PDF as PNG or JPG images. Scale options (1x-4x). Batch download as ZIP.

Use case: Extract charts from a PDF report for a presentation.

5. Extract Images

Pull all embedded images from a PDF file. Handy for extracting photos, logos, or diagrams.

6. Base64 to PDF (and back)

Convert PDF to base64 text (for embedding in JSON, HTML, or APIs) and vice versa.

7. Text to Image

Convert any text into an image — useful for creating text-based graphics or watermarks.

The Tech Stack

  • pdf-lib (1.17.1) — Merge, split, PDF manipulation
  • jsPDF (2.5.1) — Images to PDF
  • pdf.js (3.11.174) — PDF to images, extract images
  • JSZip (3.10.1) — Batch download as ZIP
  • FileSaver.js — Trigger downloads

All loaded from CDN with defer so nothing blocks rendering. No frameworks, no build step, no npm.

Free Limits

Feature Free PRO
Merge pages 10 Unlimited
Split pages 10 Unlimited
Images to PDF 5 images Unlimited
PDF to images 10 pages Unlimited
File size 10 MB Unlimited

Free limits are generous — most casual users never hit them.

Why Client-Side Matters

  • Privacy: Your documents never leave your device
  • Speed: No upload wait time. Processing happens immediately
  • Offline: Works after the first page load
  • Security: No server to hack, no database to leak

Try It

Launch PDF Tools →

Source on GitHub (MIT license).


Part of a collection of 24 free browser tools — all client-side, no signup, no tracking.