How to blur an image
5 methods compared (2026)
Key takeaways
- RedactPix is the best free option for privacy-sensitive blurring (faces, IDs, medical screenshots) — it never uploads your image.
- Photoshop offers the most control but costs $22.99/month and has a steep learning curve.
- Online editors (Canva, Pixlr) are easy but upload your image to their servers — avoid for sensitive content.
- For maximum security, use a solid black box instead of blur — blur can sometimes be reversed at high resolution.
- Blur is best for faces; pixelate or blackout is better for text and ID numbers.
Why blur an image?
Blurring sensitive areas in images protects privacy and, increasingly, satisfies legal requirements. Here are the most common reasons people blur images in 2026:
- GDPR and privacy law compliance. Under GDPR (EU), CCPA (California), and similar regulations, faces and license plates are personal data. Sharing a photo publicly without consent — even on social media — can violate the law.
- Protecting minors. Schools, daycares, and youth sports organizations must redact children's faces before publishing photos online.
- Medical and financial privacy. Telehealth screenshots, bank statements, and insurance documents often contain PII (patient names, account numbers) that must be hidden before sharing.
- Journalism and whistleblowing. Reporters blur sources' faces and license plates to protect identities.
- Real estate and street photography. Listing photos and street shots frequently capture bystanders and license plates that should be redacted.
Whatever your reason, the method you choose matters — especially for sensitive content. The key question: does the tool upload your image to a server? If it does, your "redacted" copy may already be compromised.
Method 1: RedactPix (free, browser-based, no upload)
RedactPix is a free image redaction tool that runs entirely in your browser. It blurs faces, text, and any selected area using on-device AI — nothing is uploaded to a server.
How it works: When you open an image in RedactPix, it loads directly into your browser tab. The blur effect is applied using the HTML5 Canvas API and JavaScript — the image data never leaves your device. Face detection runs locally via Google MediaPipe, and text scanning uses PaddleOCR with a local PII classifier.
Pros:
- Completely free — no account, no watermark, no usage limits
- Zero upload — safe for medical, financial, and minors' photos
- Automatic face detection with adjustable confidence
- AI text scan finds emails, phone numbers, IDs automatically
- Works on mobile (iOS Safari, Android Chrome)
- Exports flattened PNG with EXIF/GPS metadata stripped
Cons:
- Browser-based — requires a modern browser with JavaScript enabled
- No batch processing — one image at a time
- No creative effects (bokeh, tilt-shift) — focused on privacy redaction
Best for: Privacy-sensitive blurring — medical screenshots, ID documents, children's photos, and anyone who needs to guarantee their image is not uploaded.
Step-by-step: How to blur an image with RedactPix
- Go to the RedactPix editor in your browser.
- Upload your image by clicking "Open an image", dragging the file in, or pasting a screenshot (Ctrl/Cmd+V).
- Optionally click "Scan" to auto-detect faces and sensitive text. Detected items appear in a side panel.
- Draw additional boxes by dragging over any area you want blurred (or remove unwanted boxes from the panel).
- Select "Blur" from the masking toolbar. Adjust the intensity slider — higher values create a heavier blur.
- Preview the result. If satisfied, click "Download" to export a flattened PNG with metadata stripped.
The entire process takes under 30 seconds for a typical photo. Because nothing is uploaded, it works even on slow connections once the page is loaded.
Method 2: Adobe Photoshop
Photoshop's Blur Gallery (Field Blur, Iris Blur, Tilt-Shift) and the Liquify filter offer the most precise control over blur effects of any tool on this list.
Pros:
- Professional-grade creative blur (bokeh, tilt-shift, motion blur)
- Non-destructive editing with layers and smart objects
- Batch automation via Actions and scripts
- Content-Aware Fill for reconstructing backgrounds
Cons:
- $22.99/month subscription (Adobe Photography Plan) — no free tier
- Steep learning curve for beginners
- Heavy software — requires a powerful computer
- No automatic face/text detection for privacy redaction
Best for: Professional photographers and designers who need fine-grained creative control over aesthetic blur effects.
How to blur in Photoshop
- Open your image in Photoshop.
- Select the area to blur using the Lasso or Marquee tool.
- Go to Filter > Blur Gallery and choose a blur type (Gaussian, Field, Iris, Tilt-Shift).
- Adjust the blur radius and other settings in the properties panel.
- Click OK to apply. Save or export the result.
For privacy redaction in Photoshop, use a simple Gaussian Blur (Filter > Blur > Gaussian Blur) with a radius of 10-20px on the selected area.
Method 3: Free online editors (Canva, Pixlr, Fotor)
Browser-based editors like Canva, Pixlr, and Fotor offer blur tools in their free tiers.
Pros:
- Free tiers available
- Familiar editing interfaces with many extra features
- No install required
Cons:
- Images are uploaded to their servers — a privacy concern for sensitive content
- Free tiers add watermarks or require account sign-up
- Blur controls are basic — no intensity slider in some tools
- No automatic face/text detection
Best for: Non-sensitive images where upload is acceptable and you want extra editing features alongside blur.
Method 4: Phone apps (iOS Photos, Android Google Photos)
Both iOS and Android have built-in photo editors with blur and mosaic effects.
Pros:
- Already on your phone — no new app to install
- On-device processing — no upload
- Works offline
Cons:
- Manual only — no face or text auto-detection
- Imprecise for small areas on a phone screen
- Limited blur intensity control
Best for: Quick one-off aesthetic blur on a single phone photo where precision is not critical.
How to blur on iPhone (iOS Photos)
- Open the Photos app and select your image.
- Tap Edit, then the three dots (⋯), and select a markup or third-party blur extension.
- iOS Photos does not have a native blur brush — you'll need a free app like PixelKnot or use RedactPix in mobile Safari.
Alternatively, open RedactPix in mobile Safari — it works as a progressive web app with full blur and auto-detect features.
Method 5: Command-line (ImageMagick)
For developers and power users, ImageMagick applies blur programmatically — ideal for batch processing and automated pipelines.
Pros:
- Free and open-source
- Scriptable — process thousands of images in a loop
- Runs offline, on-device
Cons:
- Requires terminal/command-line knowledge
- No visual preview — you run the command, then check the output
- No interactive region selection — blurs the entire image or requires pre-cropping
Best for: Automated pipelines, server-side batch processing, and developers comfortable with the command line.
How to blur an image with ImageMagick
# Blur the entire image (sigma = 8)
convert input.jpg -blur 0x8 output.jpg
# Blur a specific region (top-left 200x200)
convert input.jpg \( +clone -blur 0x8 -repage +0+0 \) \
-compose over -composite output.jpg
The -blur 0xN syntax means "radius 0 (auto), sigma N" — higher sigma values create a heavier blur.
Blur vs. pixelate vs. blackout — which to choose?
There are three main ways to obscure an area in an image. They are not equally secure:
| Method | Security | Reversible? | Best for |
|---|---|---|---|
| Blur | Medium | Light blur can sometimes be reversed with AI deblurring | Faces in casual photos |
| Pixelate (mosaic) | High | Hard to reverse, especially with large blocks | Text, license plates |
| Blackout (solid box) | Maximum | Irreversible — pixels are fully replaced | ID numbers, passwords, highly sensitive text |
Security recommendation: For text containing passwords, account numbers, or government ID numbers, always use blackout — never blur. Researchers have demonstrated AI tools that can reverse light blur on text. For faces, blur or pixelate is generally sufficient.
Which method should you use?
| Your situation | Recommended method |
|---|---|
| Blurring faces or text in a sensitive photo (medical, ID, minors) | RedactPix — no upload, free, auto-detect |
| Professional creative blur (bokeh, tilt-shift) | Photoshop — most control, $22.99/mo |
| Quick blur on a non-sensitive image with extra editing | Canva or Pixlr — free, easy |
| Single photo on your phone, not sensitive | iOS/Android editor — already installed |
| Batch processing 100+ images | ImageMagick — scriptable, free |
For most users, RedactPix is the best starting point. It is free, private, and auto-detects faces in seconds. You can always switch to Photoshop for professional creative work later.