Inicio Image Blur

Image Blur

Blur images with an adjustable radius — 100% in your browser.

Source

Suelta tu imagen aquí

o haz clic para explorar

.jpg.png.webp.gif.bmp

Options

Original
Blurred

What is image blur?

Image blur is a visual effect that softens or smooths the detail of a picture by mixing neighboring pixels together. Instead of every pixel keeping its own sharp value, each pixel becomes a weighted average of the pixels around it, which removes fine detail and produces a softer, dreamier look. The strength of the effect is controlled by the blur radius — the larger the radius, the more pixels contribute to each output value and the more out-of-focus the image appears. Blur is one of the most widely used operations in image editing, photography and computer graphics.

There are several different kinds of blur. A box blur simply averages a square neighborhood of pixels and is fast but produces a slightly blocky result. A Gaussian blur uses a bell-shaped weighting curve so that closer pixels contribute more than distant ones, producing a smoother, more natural look that mimics the way a real camera lens defocuses light. This tool relies on the browser's built-in Canvas filter, which implements a high-quality Gaussian-style blur and is accelerated by the graphics hardware, so even large images are processed almost instantly. Everything runs locally in your browser, so your photos never leave your device.

How the blur filter works

Under the hood, this tool uses the Canvas 2D ctx.filter = "blur(Npx)" property, which applies a Gaussian blur as part of the rendering pipeline. When the source image is drawn onto the canvas with drawImage, the browser computes each output pixel by sampling the input pixels within a circular neighborhood of radius N and weighting them according to the Gaussian function. Because the work is handed off to the browser's optimized rendering engine, the result is both fast and visually smooth, with none of the banding or blocky edges that simpler blur algorithms produce.

The radius slider lets you choose exactly how strong the blur should be. A value of 0px leaves the image untouched, a value of 1–3px produces a subtle softening that is perfect for skin retouching or removing noise, while values of 8–20px create a strong defocus effect that can be used for abstract backgrounds or to hide sensitive information. The output is then re-encoded as PNG, JPG or WebP depending on the format you select. PNG is the safest choice when you want to preserve every pixel exactly, while JPG and WebP produce much smaller files at the cost of a small amount of additional compression.

Blur radius and strength comparison

Choosing the right blur radius depends on what you are trying to achieve. A small radius gives a gentle soft-focus look, while a large radius produces a heavy bokeh-style defocus that can completely abstract the image. The table below gives a quick overview of how each range of values affects the result:

RadiusEffectTypical use
0 pxNo blur — original imageBypass / reset
1–3 pxSubtle softening, light denoiseSkin smoothing, noise reduction
4–7 pxVisible blur, detail fadesBackgrounds, dreamy effect
8–12 pxStrong defocusAbstract art, focus separation
13–20 pxHeavy blur, near-unrecognizableCensoring, privacy masks

As a rule of thumb, start with a radius around 3px for a natural softening effect and increase it gradually until you reach the desired look. You can always re-apply the filter with a different value if the first result is too strong or too weak.

When to use image blur

Blurring an image is useful in a wide range of practical and creative situations. Whether you are protecting privacy, building a design, or just making a photo look more atmospheric, a controlled blur is often the right tool. Common scenarios include:

  • Privacy and censoring. Blur faces, license plates, addresses or sensitive text in screenshots before sharing them online.
  • Skin retouching. A light blur softens blemishes and evens out skin tones in portrait photos while keeping the overall structure intact.
  • Background separation. Blurring the background of a portrait or product shot simulates a shallow depth of field and draws attention to the subject.
  • Abstract and artistic effects. A heavy blur turns any photo into a soft color field that can be used as a wallpaper, gradient or design backdrop.
  • Reducing noise. A subtle blur removes grain and compression artifacts from low-light photos before further editing.
  • Design mockups. Blurred images are commonly used as hero backgrounds behind text, since they reduce visual competition with the foreground content.

Whenever detail in a region of an image is distracting, irrelevant or sensitive, blurring is the fastest way to soften or remove it without cropping the picture.

How to blur an image

Blurring an image with this tool takes only a few seconds and runs entirely in your browser — no uploads, no sign-up, no watermark. The tool decodes your image locally, applies the Gaussian-style blur through the Canvas API, and lets you export the result in the format you need. Follow these steps:

  1. Upload your image. Click the upload area or drag and drop a JPG, PNG, WebP, GIF or BMP file. The image is decoded and previewed instantly.
  2. Set the blur radius. Use the slider from 0 to 20 pixels. A small value gives a subtle softening, while a large value produces a heavy defocus.
  3. Choose an output format. Pick PNG for lossless quality, JPG for smaller photos, or WebP for a modern balance of size and quality.
  4. Click Apply Blur. The tool processes the image and shows the original and blurred file sizes side by side.
  5. Download the blurred image. Click "Download Blurred" to save the result. The original file stays untouched on your device.

Because every step runs locally in your browser using JavaScript, your image is never uploaded to a server. This makes the blur tool completely private, fast and suitable for sensitive or confidential images.

Is this image blur tool free?

Yes, completely free with no sign-up, watermarks or limits.

What kind of blur does it use?

A Gaussian-style blur applied through the browser's built-in Canvas filter, which is hardware-accelerated and produces smooth, natural results.

What is the maximum blur radius?

The slider goes up to 20 pixels. Higher values produce a stronger, more defocused look.

Does blur work on transparent PNGs?

Yes. If you export as PNG, transparency is preserved. JPG does not support transparency.

Are my images uploaded?

No. All processing is local. Your images never leave your browser.