How to Blur the Background of a Photo
Blurring the background isolates your subject and creates a professional portrait look. Here are the best free and paid methods for every platform.
Why blur the background?
Background blur — sometimes called bokeh — directs the viewer's attention to the subject by reducing visual noise. It is the signature look of portrait photography taken with a wide-aperture lens. Digital blur tools replicate this effect on photos that were taken without it.
Method 1: Snapseed (free, iOS & Android)
- Open Snapseed and load your photo
- Go to Tools > Lens Blur
- Drag the focus point (the inner circle) over your subject
- Adjust the outer ring to set how far the sharp area extends
- Set Blur Strength (0–100) and Transition (how quickly the blur fades in)
- Tap the tick to apply and export
Method 2: iPhone Portrait mode
Take portraits in Portrait mode to capture background blur automatically. On existing Portrait photos: open in Photos app, tap Edit, and use the f/ depth slider at the top left to adjust blur strength.
For non-Portrait photos on iPhone: use Snapseed (above) or an online tool in Safari.
Method 3: Photoshop (desktop)
- Open your image
- Go to Select > Subject (AI-powered, works in one click)
- Refine the selection if needed: Select > Select and Mask
- Invert: Ctrl+Shift+I (Win) / Cmd+Shift+I (Mac)
- Apply: Filter > Blur Gallery > Field Blur — set blur strength (10–25px)
- Click OK and save
Method 4: GIMP (free desktop)
- Use Fuzzy Select or Scissors Select to select the background
- With background selected: Filters > Blur > Gaussian Blur
- Set radius (10–30px) and click OK
Method 5: CSS blur background
/* Frosted glass effect — content stays sharp */
.card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Blurred background image — content stays sharp */
.hero {
position: relative;
}
.hero::before {
content: '';
position: absolute;
inset: -20px; /* prevent blur edge clipping */
background: url('photo.jpg') center/cover;
filter: blur(15px);
z-index: -1;
}Blur your image now — free, instant
Upload, set blur intensity, download. For full-image blur. No sign-up, no upload to server.
Use Blur Image Tool →Frequently asked questions
How do I blur the background of a photo for free?
The easiest free options: (1) Snapseed app (free, iOS/Android) — open image, go to Tools > Lens Blur, position the focus point on your subject, adjust the blur strength and transition. (2) Canva — upload your image, click Edit image, and use the Background Remover, then place the subject on a blurred version of the same background. (3) Remove.bg or Photoshop's Subject Select + Gaussian Blur for desktop.
How do I blur the background in Photoshop?
Select the subject: use Select > Subject (one click in newer Photoshop). Invert the selection (Ctrl+Shift+I / Cmd+Shift+I) to select the background. With the background selected, go to Filter > Blur > Gaussian Blur and set a radius (5–20px works well). Click OK. The subject stays sharp, the background blurs.
How do I blur the background on iPhone?
iPhone Portrait mode (iPhone 7 Plus and later) blurs the background automatically using the dual camera. For existing photos: in the Photos app, open a Portrait mode photo, tap Edit and adjust the depth effect with the 'f' slider. For non-Portrait photos, use the Snapseed app (free): Tools > Lens Blur.
How do I blur the background in Canva?
Canva's standard blur applies to the whole image, not just the background. For background-only blur: (1) Use Background Remover to isolate your subject. (2) Blur the original image using Edit image > Blur. (3) Place the cut-out subject on top of the blurred background. This gives a clean portrait effect.
How do I blur a background in CSS?
For a frosted glass / blurred background effect in CSS, use backdrop-filter: .element { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); }. For blurring a background image without affecting content, use a pseudo-element with the same background image and filter: blur(). The content layer sits above the blurred pseudo-element.
What is the difference between blur and bokeh?
Bokeh refers specifically to the aesthetic quality of the out-of-focus blur in photography — the soft, pleasing circular shapes that appear in blurred light sources. It is created by a camera lens at wide aperture. Digital background blur tools simulate this effect with a Gaussian or lens blur algorithm. True bokeh comes from optical physics; digital blur is a close approximation.