PDF tools

Every one of these runs on your own device.

10 tools

In this category

PDF is the format people reach for when a document has to look the same everywhere, and it is also the format that causes the most friction when you need to change something. These tools cover the four operations that account for the overwhelming majority of that friction: making a PDF from images, pulling images back out, joining several files into one, and breaking one file into its pages.

Why uploading a PDF is a bigger decision than uploading a photo

The PDFs people convert are rarely holiday snapshots. They are signed contracts, medical results, tax filings, bank statements, ID scans and school records. A photo leaking is embarrassing; a scanned passport or a payslip leaking is a different category of problem entirely.

Most free PDF sites work by uploading your file to their servers, processing it there, and giving you a download link. Read their terms and you will usually find a retention window measured in hours, a clause granting them a licence to process the file, and a link that anyone who obtains it can open. None of that is unusual or even dishonest — it is simply how server-side processing has to work.

These tools take the other route. The PDF is parsed and rewritten by JavaScript and WebAssembly inside your own browser tab. There is no upload request, so there is no retention period to trust, no link to leak, and no queue to wait in.

Which tool you actually want

If you have photos or scans and need one document to send or print, use JPG to PDF. It accepts several images at once, keeps the order you arrange them in, and can either fit each page to its image or force everything onto A4.

If you have a PDF and need the pages as pictures — for a slide deck, a forum post, or a system that refuses PDFs — use PDF to JPG for photographic pages, or PDF to PNG when the pages contain text, diagrams or screenshots and you need the edges to stay crisp.

If you have several PDFs that belong together, use Merge PDF. If you have one PDF and only need part of it, use Split PDF, which writes each page out as its own file so you can keep the pages you want and discard the rest.

Three things people expect PDF tools to do that they cannot

A PDF is not a container of editable text in the way a Word document is. It is closer to a set of drawing instructions: place this glyph at these coordinates in this font. That is why "editing a PDF" is hard in a way that surprises people, and why converting PDF to Word can never be perfectly faithful — the converter has to reverse-engineer paragraphs and tables from positioned glyphs.

Converting a scanned PDF to text needs OCR, which is character recognition, not conversion. If the page is a photograph of text, the file contains no text at all — only pixels. Any tool that claims to "convert" it is actually recognising it, and recognition makes mistakes.

Compressing a PDF that consists mostly of scanned images means re-compressing those images, which is lossy. A tool that promises a big size reduction with no quality change on a scan-heavy PDF is not telling you the whole story.

How to check we are telling the truth

Open your browser developer tools, switch to the Network tab, and run any conversion on this site. Watch the list of requests. Your file does not appear in any of them, because there is nothing on the other end to receive it.

If you want the stronger version of that check: the Content-Security-Policy header this site sends restricts network connections to our own origin. Your browser enforces it. Even a compromised script on one of these pages could not post your document to a third party — the connection would be blocked before it left your machine.

Frequently asked questions

Is there a page or file size limit?

None imposed by us. The practical ceiling is your own device memory, since the whole document is held in the browser tab while it is being processed. A phone will give up sooner than a desktop on very large files.

Do these tools add a watermark?

No. Watermarks exist to push you towards a paid plan on sites that pay for server capacity. Processing here costs us nothing, so there is nothing to upsell.

Can I edit the text inside a PDF here?

No, and you should be sceptical of tools that claim to do it well. A PDF stores positioned glyphs rather than paragraphs, so text editing means rebuilding layout that was never saved in the first place.

Will the quality drop when I merge or split?

No. Merging and splitting copy the existing page objects across without re-encoding them, so the result is byte-for-byte equivalent content in a new container.

Does any of this work offline?

Yes, after your first visit. The page and the PDF engine are cached by your browser, so a later conversion works with no network connection at all.

Browse by category