Categories

Image Box Blur

Apply box blur kernel for simple uniform averaging and fast noise reduction

Click to upload file or drag and drop file here

Maximum file size: 10MB Supported formats: image/jpeg, image/png, image/webp, image/gif, image/bmp, image/tiff

Image to apply box blur filter

Size of the box kernel for averaging. Larger = more blur

Number of times to apply box blur. More iterations = stronger effect

Additional processing on the blurred output

Key Facts

Category
Design
Input Types
file, select, number
Output Type
file
Sample Coverage
4
API Ready
Yes

Overview

The Image Box Blur tool provides a fast, efficient way to soften images by applying a uniform averaging filter. By calculating the mean color value within a defined kernel size, this utility effectively reduces digital noise and creates smooth, artistic blur effects for your photos and graphics.

When to Use

  • To quickly reduce high-frequency digital noise or grain in an image.
  • To create a soft-focus or background blur effect for design projects.
  • To obscure sensitive information or faces by applying a heavy blur filter.

How It Works

  • Upload your image file in any supported format like JPEG, PNG, or WebP.
  • Select the box kernel size to determine the intensity of the blur effect.
  • Adjust the iteration count to increase the strength of the smoothing process.
  • Choose an output mode to apply additional stylistic adjustments before downloading your result.

Use Cases

Softening portrait backgrounds to make the subject stand out.
Removing unwanted grain from low-light photography.
Creating abstract background textures for web and graphic design.

Examples

1. Privacy Masking

Content Creator
Background
A creator needs to share a screenshot that contains a visible email address.
Problem
The sensitive text needs to be obscured quickly without using complex editing software.
How to Use
Upload the screenshot, select a 15x15 box size, and apply the blur to the specific area.
Example Config
kernelSize: 15, iterations: 2
Outcome
The sensitive information is effectively unreadable while maintaining the overall context of the screenshot.

2. Artistic Background Softening

Graphic Designer
Background
A designer has a sharp, busy background image that distracts from the foreground text.
Problem
The background needs to be softened to improve readability of the overlaying text.
How to Use
Upload the background image, select a 9x9 box size, and choose the 'Normal' output mode.
Example Config
kernelSize: 9, iterations: 1, outputMode: normal
Outcome
The background is uniformly softened, creating a professional depth-of-field effect that highlights the foreground content.

Try with Samples

image, png, jpg

Related Hubs

FAQ

What is a box blur?

A box blur is a spatial filter that replaces each pixel with the average value of its neighboring pixels within a square box.

How does the kernel size affect the image?

A larger kernel size covers more pixels for each calculation, resulting in a stronger, more noticeable blur effect.

Can I apply the blur multiple times?

Yes, you can use the 'Iterations' setting to apply the blur effect repeatedly, which creates a progressively smoother result.

What file formats are supported?

The tool supports common image formats including JPEG, PNG, WebP, GIF, BMP, and TIFF.

Does the output mode change the blur quality?

Output modes like 'Enhanced' or 'Vintage' apply color and contrast adjustments to the blurred image to achieve specific aesthetic looks.

API Documentation

Request Endpoint

POST /en/api/tools/image-box-blur

Request Parameters

Parameter Name Type Required Description
imageFile file (Upload required) Yes Image to apply box blur filter
kernelSize select No Size of the box kernel for averaging. Larger = more blur
iterations number No Number of times to apply box blur. More iterations = stronger effect
outputMode select No Additional processing on the blurred output

File type parameters need to be uploaded first via POST /upload/image-box-blur to get filePath, then pass filePath to the corresponding file field.

Response Format

{
  "filePath": "/public/processing/randomid.ext",
  "fileName": "output.ext",
  "contentType": "application/octet-stream",
  "size": 1024,
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
File: File

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-image-box-blur": {
      "name": "image-box-blur",
      "description": "Apply box blur kernel for simple uniform averaging and fast noise reduction",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=image-box-blur",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

Supports URL file links or Base64 encoding for file parameters.

If you encounter any issues, please contact us at [email protected]