-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.html
More file actions
234 lines (221 loc) · 12.4 KB
/
Copy pathguide.html
File metadata and controls
234 lines (221 loc) · 12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Does an online PDF merge upload your file? — ClientPDF Guide</title>
<meta name="description" content="Most 'free' PDF tools send your file to a server first. Here's how to check in 10 seconds, which tools don't, and how client-side processing works." />
<link rel="canonical" href="https://abyworkings-coder.github.io/clientpdf/guide.html" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Does merging a PDF online actually upload your file?" />
<meta property="og:description" content="Most 'free' PDF tools send your file to a server before doing anything to it. Here's how to check in 10 seconds, which tools don't, and how client-side PDF processing actually works." />
<meta property="og:url" content="https://abyworkings-coder.github.io/clientpdf/guide.html" />
<meta property="og:site_name" content="ClientPDF" />
<meta property="og:image" content="https://abyworkings-coder.github.io/clientpdf/og-image.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Does merging a PDF online actually upload your file?" />
<meta name="twitter:description" content="Most 'free' PDF tools send your file to a server before doing anything to it. Here's how to check in 10 seconds." />
<meta name="twitter:image" content="https://abyworkings-coder.github.io/clientpdf/og-image.jpg" />
<link rel="icon" href="/logo.svg" type="image/svg+xml" />
<link rel="icon" href="/favicon-32.png" sizes="32x32" type="image/png" />
<link rel="icon" href="/favicon-16.png" sizes="16x16" type="image/png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Does merging a PDF online actually upload your file?",
"description": "Most 'free' PDF tools send your file to a server before doing anything to it. Here's how to check in 10 seconds, which tools don't, and how client-side PDF processing actually works.",
"author": { "@type": "Organization", "name": "ClientPDF" },
"publisher": { "@type": "Organization", "name": "ClientPDF" },
"mainEntityOfPage": "https://abyworkings-coder.github.io/clientpdf/guide.html",
"datePublished": "2026-07-27"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://abyworkings-coder.github.io/clientpdf/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Guides",
"item": "https://abyworkings-coder.github.io/clientpdf/guide.html"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How do I check if a PDF tool uploads my file?",
"acceptedAnswer": { "@type": "Answer", "text": "Open your browser's DevTools (F12 or Cmd+Opt+I), click the Network tab, then use the tool. If you see a POST or PUT request with a file-sized payload going to any domain, your file left your device. If the Network tab stays empty, it didn't." }
},
{
"@type": "Question",
"name": "Is it safe to use free online PDF mergers?",
"acceptedAnswer": { "@type": "Answer", "text": "It depends entirely on whether the tool processes files in your browser or on a server. Server-side tools receive a full copy of your file, and you're trusting their retention policy, their security, and their jurisdiction. Client-side tools never transmit the file at all, so there's nothing to trust." }
},
{
"@type": "Question",
"name": "How does client-side PDF processing work without a server?",
"acceptedAnswer": { "@type": "Answer", "text": "Modern browsers can run compiled libraries (via WebAssembly or pure JavaScript) fast enough to parse, edit, and rebuild PDF files locally. Libraries like pdf-lib do the same byte-level manipulation a server would — reading the PDF's object structure and rewriting it — except it all happens in a tab on your own CPU, and the output never has to leave your machine to be created." }
}
]
}
</script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="grain"></div>
<header class="topbar">
<div class="wrap topbar-inner">
<div class="brand">
<span class="brand-mark">◆</span>
<span class="brand-name">Client<em>PDF</em></span>
</div>
<nav class="toolnav" aria-label="Tools">
<a href="./index.html">Merge</a>
<a href="./split.html">Split</a>
<a href="./delete-pages.html">Delete Pages</a>
<a href="./duplicate-pages.html">Duplicate Pages</a>
<a href="./insert-pages.html">Insert Blank Pages</a>
<a href="./rotate.html">Rotate</a>
<a href="./reorder.html">Reorder</a>
<a href="./compress.html">Compress</a>
<a href="./page-numbers.html">Page Numbers</a>
<a href="./images-to-pdf.html">Images to PDF</a>
<a href="./extract-images.html">Extract Images</a>
<a href="./pdf-to-jpg.html">PDF to JPG</a>
<a href="./watermark.html">Watermark</a>
<a href="./metadata.html">Metadata</a>
<a href="./crop.html">Crop Pages</a>
<a href="./resize.html">Resize Pages</a>
<a href="./grayscale.html">Grayscale PDF</a>
<a href="./border.html">Page Borders</a>
<a href="./image-watermark.html">Image Watermark</a>
<a href="./flatten.html">Flatten Form Fields</a>
<a href="./fill-form.html">Fill Form Fields</a>
<a href="./bookmarks.html">Add Bookmarks</a>
<a href="./split-by-bookmarks.html">Split by Bookmarks</a>
<a href="./pages-per-sheet.html">Pages per Sheet</a>
<a href="./tools.html">All Tools</a>
<a href="./guide.html" aria-current="page">Guide</a>
</nav>
<div class="topbar-status">
<span class="dot" aria-hidden="true"></span>
<span>running locally in this tab — nothing uploaded</span>
</div>
</div>
</header>
<main class="wrap">
<article class="article">
<h1>Does merging a PDF online actually upload your file?</h1>
<p class="article-meta">ClientPDF Guide · a 3-minute read, plus a 10-second test you can run yourself</p>
<p>
Almost every "free online PDF tool" works the same way: you drop a file in,
it disappears for a second or two, and a new file comes back. That gap is
doing a lot of work you can't see — and for most of these tools, that work
happens on someone else's server, not your device.
</p>
<p>
That matters more than it sounds. A PDF you're merging or splitting is
often a contract, a payslip, a medical form, or a tax document — exactly
the kind of file you don't want sitting on a server you've never heard of,
governed by a retention policy you never read.
</p>
<h2>The 10-second test</h2>
<p>
You don't have to take any tool's word for what it does. Every browser
ships with a way to see every byte that leaves your machine:
</p>
<ol>
<li>Open DevTools — <code>F12</code> on Windows/Linux, <code>Cmd+Option+I</code> on Mac.</li>
<li>Click the <strong>Network</strong> tab.</li>
<li>Use the PDF tool as normal — upload, merge, download.</li>
<li>Look at what shows up. A <code>POST</code> or <code>PUT</code> request with a payload roughly the size of your file means it left your device. An empty (or near-empty) Network tab means it didn't.</li>
</ol>
<p>
Try it on <a href="./index.html">this site's merge tool</a> right now — that's exactly what
the live "0 network requests" counter on the homepage is showing you, continuously, not just on page load.
</p>
<h2>Why most tools upload anyway</h2>
<p>
It's not usually malicious — it's just easier to build. Processing a PDF
on a server means you can use any language, any library, any amount of
CPU, and you don't have to worry about a user's browser or device being
capable enough. Client-side processing means shipping a real PDF-parsing
library to the browser and making it fast enough to run on an average
laptop — harder to build, but it means the file never has to leave the
user's machine to begin with.
</p>
<h2>Server-side vs. client-side, at a glance</h2>
<table>
<tr><th></th><th>Server-side tool</th><th>Client-side tool</th></tr>
<tr><td>Your file is</td><td>Uploaded to a remote server</td><td>Never leaves your device</td></tr>
<tr><td>You're trusting</td><td>Their retention policy, security, jurisdiction</td><td>Nothing — there's nothing to trust</td></tr>
<tr><td>Works offline</td><td>No</td><td>Yes, after the page loads</td></tr>
<tr><td>Verifiable</td><td>Only by reading their policy</td><td>Yes — check the Network tab yourself</td></tr>
</table>
<h2>How client-side PDF processing actually works</h2>
<p>
A PDF file is just a structured document — objects, streams, and a cross-reference
table telling a reader how they fit together. Merging two PDFs means reading both
object structures and rebuilding one file that references pages from each. Splitting
means the reverse. None of that requires a server; it requires a library that
understands the PDF spec well enough to do it in JavaScript, in your tab, on your CPU.
<a href="./index.html">ClientPDF</a> uses <a href="https://github.com/Hopding/pdf-lib" target="_blank" rel="noopener">pdf-lib</a>,
an open-source library that does exactly this — vendored locally on this site so even
the library itself doesn't come from a third-party CDN on every load.
</p>
<h2>What to check before trusting any PDF tool with a real file</h2>
<ul>
<li>Open DevTools → Network tab before you use it, every time — not just once.</li>
<li>If it asks you to sign up or verify your email before letting you process a file, be more suspicious, not less — that's a sign the file is going somewhere that wants to be tied back to you.</li>
<li>If it works with your device offline (airplane mode, after the page has loaded), that's strong evidence it's client-side.</li>
<li>Prefer tools that vendor their own dependencies rather than pulling code from a CDN on every load — a compromised CDN is a real, if less obvious, way files or data can leak even from an otherwise client-side tool.</li>
</ul>
<div class="cta-box">
<p><strong>Try it yourself:</strong> <a href="./index.html">merge PDFs</a> or <a href="./split.html">split a PDF</a> — DevTools open, Network tab watching. No account, no upload, no waiting for a server.</p>
</div>
<p class="article-meta">Related: <a href="./guide-compress.html">Why didn't compressing my PDF make it smaller?</a> · <a href="./guide-page-numbers-rotated.html">Why are my page numbers sideways or in the wrong corner?</a> · <a href="./guide-merge-bookmarks.html">Why did merging lose the bookmarks and table of contents?</a> · <a href="./guide-split-reorder-form-fields.html">Why did my form fields stop working after a split or reorder?</a> · <a href="./guide-rotate-viewer-mismatch.html">Why does a rotated PDF look fine here but sideways elsewhere?</a> · <a href="./guide-password-protected.html">Why can't I open my password-protected PDF here?</a></p>
</article>
</main>
<footer class="footer">
<div class="wrap footer-inner">
<span>ClientPDF — built by <a href="https://github.com/abyworkings-coder" target="_blank" rel="noopener">Auto Company</a></span>
<span>No servers were harmed in the making of this tool.</span>
<span class="footer-legal"><a href="./privacy.html">Privacy</a> · <a href="./terms.html">Terms</a></span>
</div>
</footer>
<script>
(function () {
try {
var ref = document.referrer;
var bucket = "direct";
if (ref) {
bucket = /github\.com/i.test(ref) ? "github" : "other";
}
var base = "https://api.counterapi.dev/v1/clientpdf-abyworkings/";
fetch(base + "visits-total/up", { mode: "no-cors" });
fetch(base + "visits-" + bucket + "/up", { mode: "no-cors" });
} catch (e) {
// analytics must never break the tool
}
})();
</script>
</body>
</html>