Ttooleras
🌫️

Image Blur Tool

Image Tools

Apply Gaussian blur, motion blur, or radial blur to any image with adjustable intensity for artistic effects or privacy.. Free, private — all processing in your browser.

🌫️
Drop an image here or click to upload
Supports PNG, JPG, WebP, GIF
Advertisement

The Image Blur tool applies blur effects to any image for artistic purposes (soft focus, dreamy backgrounds) or privacy (obscuring faces, license plates, sensitive text). Choose from Gaussian blur (smooth, all-directional), motion blur (directional streaking), or radial blur (simulating zoom or rotation), with configurable intensity. All processing runs in your browser — original images and blurred results stay private, which matters when you\u2019re blurring for privacy reasons.

Gaussian blur is the most common — it softens every pixel by weighted-averaging with neighbors based on a Gaussian distribution. Motion blur simulates camera movement or subject movement, with directional streaking at a chosen angle. Radial blur creates a zoom or rotational blur effect around a center point. Intensity controls blur radius in pixels — higher values mean more blur but also slower processing. For privacy-specific use (blurring faces in photos before sharing), use high intensity to ensure the subject isn\u2019t recoverable.

Image Blur Tool — key features

Gaussian blur

Smooth omnidirectional blur for soft focus and background effects.

Motion blur

Directional streaking simulating camera or subject movement.

Radial blur

Zoom or rotational blur around a center point.

Adjustable intensity

Blur radius from 1 to 100 pixels for subtle to extreme effects.

All common formats

JPG, PNG, WebP, GIF, BMP input and output.

Privacy presets

Aggressive blur settings specifically for obscuring faces, license plates, or sensitive text.

Real-time preview

See the blur applied live as you adjust intensity.

Client-side only

Images stay in your browser; critical when using blur for privacy.

How to use the Image Blur Tool

  1. 1

    Upload image

    Drag or click to select any JPG, PNG, or WebP image.

  2. 2

    Choose blur type

    Gaussian (standard), motion (directional), or radial (around center).

  3. 3

    Set intensity

    Blur radius in pixels — higher values mean stronger blur.

  4. 4

    Preview

    See the blurred result immediately. Adjust as needed.

  5. 5

    Download

    Save the blurred image in your chosen format.

Common use cases for the Image Blur Tool

Privacy and anonymization

  • Face blurring: Obscure faces in photos before sharing or publishing for privacy protection.
  • License plate obscuring: Blur vehicle plates in photos posted publicly to prevent owner identification.
  • Sensitive text: Blur names, addresses, credit card numbers, or other text before sharing screenshots.

Photography

  • Soft focus effect: Apply subtle Gaussian blur for dreamy, romantic portrait look.
  • Background defocus: Blur backgrounds in photos to simulate shallow depth of field (bokeh effect).
  • Motion effect: Add motion blur to static images for sense of movement.

Design

  • Glassmorphism backgrounds: Create frosted glass effect backgrounds with Gaussian blur behind UI elements.
  • Hero image treatment: Blur background images behind headline text for contrast and readability.
  • Placeholder images: Create blurred low-res image placeholders that load before high-res versions (progressive loading).

Image Blur Tool — examples

Subtle blur

Light Gaussian for soft focus.

Input
radius 3px, Gaussian
Output
gently softened image, details still visible, dreamy quality

Strong privacy blur

For anonymization.

Input
radius 30px, Gaussian
Output
heavy blur, face features indistinguishable, privacy-safe

Motion blur

Horizontal streak effect.

Input
radius 15px, motion, 0° angle (horizontal)
Output
image appears to be moving left-to-right with streaking

Background blur

Foreground sharp, background blurred.

Input
selective blur (requires masking)
Output
main subject remains sharp while background has radius 15 Gaussian blur

Frosted glass

UI background effect.

Input
radius 20px, Gaussian, then slight white overlay
Output
typical glassmorphism background effect

Technical details

Gaussian blur uses the CSS filter: blur(Npx) or Canvas 2D ctx.filter property. The Gaussian formula is:

G(x,y) = (1 / (2πσ²)) × e^(-(x² + y²) / (2σ²))

Where σ (sigma) controls the blur radius. Larger σ spreads each pixel\u2019s influence wider. Implementation uses a separable 1D kernel applied horizontally then vertically for performance.

Performance: naive 2D Gaussian is O(N × r²) where N is pixel count and r is radius. Separable implementation is O(N × r). Large blurs (r > 20) still take time; for very large blurs, most implementations use iterated box blur approximation which is O(N) independent of radius.

Motion blur is directional — pixels shift along a line in one direction with decreasing weight. Implementation: convolve with a line-shaped kernel.

Radial blur is simulated by taking multiple samples along the radius from a center point and averaging. Creates a zoom-blur effect. Computationally expensive on large images.

Browsers support:
- CSS filter: blur(Npx) for display (not exported)
- Canvas ctx.filter = \"blur(Npx)\" (supported in modern browsers, applies during drawing)
- Pixel-level blur by reading ImageData and applying convolution manually (slower but portable)

This tool prefers Canvas ctx.filter when supported, falling back to manual convolution on older browsers.

Privacy blur considerations:
- Extreme blur of identifying features (faces, plates) should be irreversible. Radius of 20+ pixels on a face ensures non-recovery.
- Small blur radius is reversible with de-blurring algorithms. Don\u2019t trust 2-5px blur for privacy.
- Better: cover the region with a solid block or pixelate it (which is effectively aggressive blur).

Output quality: saving a blurred image as JPEG compresses it further. Blur naturally makes compression more effective (less high-frequency detail), so JPEG files shrink significantly.

Edge handling: at image edges, the blur kernel extends beyond the image. Common strategies: extend edges (clamp to edge pixel), wrap (tile), reflect (mirror). Affects how the blur looks at boundaries.

Common problems and solutions

Blur reversible by de-blurring

Small blurs (1-5 pixels) can be partially reversed with de-blurring algorithms (especially if the blur radius is known). For real privacy, use aggressive blur (20+ pixels) or black out the region entirely.

Blur doesn’t hide everything

Heavy blur obscures details but the location, shape, and color of the subject remain visible. For anonymous photos, combine blur with cropping or solid-color overlay.

File size

Blurred images compress better with JPEG (less high-frequency detail). Output may be smaller than original. PNG blurs don’t shrink as much since PNG is lossless.

Edges look strange

Near image edges, blur behavior depends on edge handling (extend, reflect, wrap). Default is extend (clamp to edge). If the result looks wrong, try different edge handling if available.

Slow for large blurs

Very large blur radii (50+ pixels) take longer to process, especially on large images. Consider resizing down first, applying blur, then resizing up if you need speed.

Motion blur direction

Motion blur at 0° is horizontal (left-right). 90° is vertical (up-down). Adjust angle for diagonal motion. Unexpected direction? Check the angle convention.

Lossy on repeated blurs

Each blur + save (as JPEG) reduces quality. For multi-step editing, save as PNG intermediates.

Image Blur Tool — comparisons and alternatives

Compared to Photoshop Gaussian Blur, this tool is faster for single blur operations. Photoshop has more blur types (lens blur, smart blur) and selective control; this tool is for quick whole-image blur.

Compared to mobile photo app blur, this tool preserves image quality better (no additional compression). Phone apps often degrade images further; browser-based blur doesn\u2019t.

Compared to CSS filter: blur(), this tool produces an actual blurred image file. CSS blur is display-only; this saves the blur permanently.

Frequently asked questions about the Image Blur Tool

How do I blur part of an image?

This tool blurs the entire image. For selective blur (only faces, specific areas), use a graphics editor like Photoshop or GIMP, select the region, and apply blur to the selection.

Is blur reversible?

Small blurs (few pixels radius) can be partially reversed with de-blurring algorithms, especially if the blur parameters are known. For privacy that resists reversal, use radius 20+ pixels or black out the region instead.

Which blur type should I use?

Gaussian for general softening and most use cases. Motion for directional effect (simulating camera movement). Radial for zoom or rotation feel. For privacy, Gaussian with high radius is sufficient.

How much blur for privacy?

At least 20 pixels radius for faces in typical photos. Test the result — the subject’s face shouldn’t be recognizable. Extra safety: combine with cropping out identifying marks or use solid-color overlay instead.

Will blur reduce file size?

For JPEG: yes, significantly. Blur removes high-frequency detail, making the image more compressible. Expect 30-50% smaller JPEG files after blurring. For PNG: minimal change because PNG is lossless.

Does it preserve transparency?

Yes for PNG and WebP. Alpha channel is blurred along with RGB. For JPEG output, transparency is lost (fills with background color).

Is my image private?

Yes. All processing runs in your browser. Especially important for privacy-focused use (blurring faces before sharing) — the original image never leaves your machine.

How large a blur can I apply?

Up to 100 pixel radius. Larger radii take longer to compute and produce very heavy blur. For most purposes, 5-30 pixels is the useful range.

Additional resources

Advertisement

Related tools

All Image Tools

Learn more

Explore more tools

200+ free tools that run in your browser.

Browse all tools →