Blur Image

Apply gaussian blur to any image.

Softening an image — obscuring a background, hiding sensitive information, or creating a dreamy depth-of-field effect — is one of the most common editing operations there is. This tool applies an adjustable blur directly to your image.

Simulating an optical effect mathematically

Blur in a photograph traditionally results from an actual optical phenomenon — light rays from an out-of-focus subject or background spreading across multiple points on the camera's sensor rather than converging sharply on one, a genuine physical consequence of lens focus and depth of field. Digital blur filters, most commonly implemented using a "Gaussian blur" (based on the Gaussian, or normal, distribution function from statistics, applied to how much each neighboring pixel influences a given pixel's final blurred value), mathematically simulate this same light-spreading effect without any actual optics involved, weighting nearby pixels more heavily than distant ones in a smooth, natural-looking falloff.

How the blur is calculated

The tool applies a blur kernel — a small mathematical window that examines each pixel's surrounding neighborhood — and recalculates every pixel's new value as a weighted average of itself and its neighbors, with weights determined by a bell-curve (Gaussian) distribution centered on that pixel; a larger blur radius considers a wider neighborhood of surrounding pixels, producing a stronger, softer blur effect.

Where blurring an image is genuinely useful

  • Obscuring sensitive or private information — blurring a license plate, face, document text or other identifying detail before sharing a photo publicly, a common practice for privacy protection.
  • Creating a depth-of-field or "bokeh" effect — artificially blurring a background to draw more attention to a sharp subject, replicating the aesthetic effect of a wide-aperture camera lens even when the original photo was taken without one.
  • Softening backgrounds for text overlays — blurring a busy background image makes overlaid text or UI elements significantly more legible, a common technique in web design and marketing graphics.
  • Reducing visual noise or distracting detail — softening a busy or cluttered area of a photo to keep a viewer's attention on the intended focal point.

Frequently asked questions

Is blurring a face or text a reliable way to hide it from being recovered? Light or moderate blur can sometimes be reversed or the underlying content partially reconstructed using specialized techniques, especially for simple, high-contrast content like text — for genuinely sensitive information, a solid, fully opaque redaction (blocking the area entirely) is considerably more reliable than blur alone.

What's the difference between Gaussian blur and a simple box blur? A Gaussian blur weights nearby pixels according to a smooth bell-curve distribution, producing a naturally soft, gradually fading result, while a simpler box blur averages nearby pixels with uniform, equal weighting, which is computationally faster but tends to produce a slightly less natural, more mechanical-looking blur.

Can I blur just part of an image instead of the whole thing? Yes, typically by first selecting or masking the specific region you want affected — many blur tools, including workflows built around this one, let you apply the effect selectively to a chosen area rather than uniformly across the entire image.

Further reading