Are online image compressors safe?

It depends entirely on one thing: whether your file leaves your device. Here is how to tell, and what to ask before uploading anything sensitive.

The questions that matter

Does the file leave your device?
The single most important question. Everything else follows from it.
How long is it kept?
Look for a stated retention period, not a vague assurance.
Who can access it?
Staff, subprocessors, and anyone who obtains the download URL.
Is the link guessable?
Some services use predictable URLs for processed files.
Does it strip EXIF?
Your GPS coordinates travel with the file unless removed.
How to verify
Load the page, disconnect from the network, then compress. If it works, nothing was uploaded.

Assessing a tool

Two architectures, two risk profiles

Server-side. Your file is transmitted to a server, processed there and returned. A copy exists on infrastructure you cannot inspect, for a period you are taking on trust, accessible to whoever operates it and to anyone who obtains the URL.

Client-side. The page loads code that runs in your browser, and the file is read from disk into the tab's memory, processed, and written back. No copy exists anywhere else because none was ever transmitted.

Neither is automatically dishonest. Server-side processing has genuine advantages — heavier codecs, no device memory limits, formats a browser cannot handle. But it is a different relationship, and it should be a deliberate choice rather than something you discover afterwards.

How to verify the claim yourself

You do not have to take anyone's word for it. Two checks, neither requiring technical skill:

The offline test. Load the page, then disconnect from the internet — Airplane Mode, or unplug the network. Now compress an image. If it works, the processing is happening on your device. If it fails or hangs, your file was going somewhere.

The network panel. Open your browser's developer tools, go to the Network tab, and compress an image. A server-side tool shows a large upload request; a client-side one shows nothing leaving at all.

These tests work on any tool, including this one.

What is actually at risk

For a photograph of a sunset, very little. The concern is proportional to what the image contains.

  • Identity documents. Passport photographs, driving licences, ID cards — the highest-value target there is.
  • Signatures. Frequently uploaded to compressors for exam and government forms.
  • Financial and medical documents. Photographed statements, prescriptions, test results.
  • Photographs of children. Especially with location metadata attached.
  • Anything commercially confidential. Unreleased products, internal screenshots, contracts.
  • Any photograph taken at home, where GPS coordinates identify where you live.

Notice how much of that list overlaps with the reasons people search for a compressor in the first place — form uploads with strict size limits are exactly where identity documents show up.

The metadata question, separately

Independent of where processing happens: your photographs carry EXIF metadata including camera model, timestamps and, if location services were on, coordinates accurate to a few metres.

If a tool preserves metadata, those coordinates travel with every copy — to the service, and to wherever you upload the result. If it strips metadata, they are removed as a side effect of re-encoding.

This matters even when the tool itself is trustworthy, because the file usually goes somewhere else afterwards.

Reasonable questions to ask

  1. Does the file leave my device? Can I verify that rather than being told?
  2. If it is uploaded, how long is it retained, and is that a specific period or a vague reassurance?
  3. Is the connection encrypted, and are the resulting download links unguessable?
  4. Does the privacy policy name subprocessors, or does it stop at "trusted partners"?
  5. Is metadata stripped, and can I choose?
  6. Who operates this, and is there a real entity behind it?

A tool that cannot answer the first question clearly is not one to hand an identity document to.

Where this site stands

Every tool here runs in your browser. There is no upload endpoint in the compression path — your file is read from your own disk into the memory of the tab, re-encoded there, and offered back as a download.

That is a claim, and you should test it rather than believe it. Load any tool page, turn off your network connection, and compress an image. It will still work.

What we do collect is ordinary: standard server logs for the pages themselves, and contact form messages if you send one. Both are described in the privacy policy.

Try it yourself

Everything below runs in your browser, so you can test any of this on your own files without uploading them.

  • Compress JPEG

    Shrink JPG and JPEG photographs with a quality slider or an exact target size.

    Open the tool
  • Remove EXIF data

    Strip GPS coordinates, camera model and timestamps before you publish.

    Open the tool
  • Lossless compressor

    Zero quality loss, every pixel preserved exactly. Honest about how modest the saving is.

    Open the tool

Questions

Frequently asked questions

Every answer below is present in the page source, expanded, so it can be read without opening anything.

Are online image compressors safe to use?

It depends on whether your file is uploaded. A server-side tool puts a copy of your image on infrastructure you cannot inspect; a client-side tool never transmits it at all. For ordinary photographs the risk is low either way — for identity documents and signatures it is not.

How can I tell if a tool uploads my files?

Load the page, disconnect from the internet, then try to compress an image. If it still works, the processing is happening on your device. You can also open your browser's Network tab and watch for a large upload request while it runs.

Do compression sites delete my images?

Most that upload say they do, usually within a stated window. You are trusting that, since there is no way to verify deletion from the outside. A stated period is better than a vague assurance, and no upload at all is better than either.

Is it safe to compress a passport photo online?

Only with a tool that does not upload it. A passport photograph is identity data, and uploading it means a copy exists somewhere you cannot audit. Run the offline test before using any tool for a document like that.

Does compressing remove my GPS location?

It does when metadata stripping is on, because the image is re-encoded from raw pixels and nothing copies the metadata across. Check that the tool does this — some deliberately preserve EXIF, which means your coordinates travel with every copy of the file.

Is server-side compression ever better?

Yes, genuinely. Servers can run heavier encoders such as MozJPEG or AVIF, handle formats browsers cannot decode at all, and process files larger than a browser tab's memory allows. It is a real trade-off, not a trick — it just should be a choice you make knowingly.

From the blog

Related reading

Longer, more practical guides from the blog.

  • Practical Guides

    How to Strip EXIF Data From Photos, and What Breaks When You Do

    A photograph from a phone can carry the coordinates of the place it was taken, the camera serial number and the exact timestamp. Removing that data is straightforward. Removing it carelessly rotates your photos sideways.

    9 min read

  • Practical Guides

    How to Compress Images for a Website Without Wrecking Them

    Resize before you compress. Measured on one photograph: half the width at quality 80 produced a 16.4 KB file, while full width at quality 40 produced 20.6 KB and looked far worse. The order of operations matters more than the settings.

    8 min read

  • Image Compression

    JPEG Quality Settings Explained: What the Number Actually Means

    Quality 80 is not 80% of anything. It is an index into a quantisation table. Measured on one photograph: dropping from 100 to 90 removes 77% of the file and 4.2 dB of fidelity; dropping from 40 to 30 removes 17% and costs almost as much.

    8 min read