Gaussian blur is a smooth, bell-shaped smoothing filter named after the Gaussian (normal) distribution. In photography and design it softens fine detail, reduces noise visually, and separates subjects from backgrounds when you combine a sharp foreground with a blurred plate. Unlike a simple box blur that averages neighbors uniformly, a Gaussian kernel weights pixels by distance so edges fade gradually without the harsh stair-steps cheaper filters sometimes show. SynthQuery’s Gaussian Blur Tool implements this class of effect in your browser with HTML5 Canvas: decode locally, optionally restrict the operation to a rectangle or a freehand stroke mask, or invert the mask so everything except your selection softens—useful for quick “portrait mode” style backgrounds without sending pixels to a server.
Selective blur versus full-frame blur
Full-frame blur treats every pixel the same, which is ideal when you want an abstract texture, a soft backdrop for typography, or a privacy screen across an entire still. Selective blur limits the operator to a region you define—either an axis-aligned rectangle for license plates and signage, or a freehand path for irregular shapes such as faces or products. Inverse mode (sometimes called background blur) keeps the masked region sharp while the surroundings soften, approximating shallow depth of field when you lack a fast lens or multi-layer source file.
Where Gaussian blur shows up in real workflows
Editors use it for cinematic bokeh plates, UI designers soften noisy stock backdrops so interface chrome stays legible, and compliance teams obscure sensitive pixels in screenshots before sharing. It also appears subtly in retouching pipelines as a precursor to frequency separation or as a gentle skin softening layer at low radius—always best paired with taste and disclosure when altering people’s appearance. Because this page never uploads your bitmap, you can experiment on NDA or pre-release creative without expanding your data footprint.
How this page fits alongside SynthQuery’s imaging stack
After you export, you might chain into the Photo Sharpener for local contrast, the Brightness or Gamma tools for tone, or the Saturation editor for color—all listed from the footer and the related-tools block below. When accompanying text needs review, SynthQuery’s AI Detector and Humanizer help polish captions and disclaimers. Bookmark the free-tools hub and https://synthquery.com/tools for the full directory as additional specialty filters (tilt-shift, pixelation, vignette, noise, emboss) continue to ship.
What this tool does
The hero workflow follows other SynthQuery image utilities: upload first, choose scope, refine parameters, verify with the comparison slider, then export. A single blur radius slider spans zero through fifty pixels in device space relative to the working canvas (longest edge capped at four thousand ninety-six pixels for stability, matching sibling tools). “Full image” applies the filter everywhere. “Blur selected area” composites the blurred layer only through your rectangle or freehand mask. “Blur background (inverse)” draws the blurred plate first, then paints the original image back inside the mask so the subject stays crisp—handy for quick subject isolation when you do not have a segmentation model.
Rectangle selection uses click-drag on the preview; freehand mode records a continuous stroke with a fixed display brush width that scales into image space for the mask. Clear selection resets geometry without forcing a re-upload. The before/after strip places the untouched decode on the left and the processed buffer on the right, with a keyboard-focusable divider that honors Arrow Left/Right, Home, and End—consistent with the brightness and sepia tools. Download supports matching the incoming MIME when encoders allow, with BMP and TIFF sources routing to PNG because browser canvas exporters rarely emit those legacy containers reliably; explicit JPEG and PNG overrides cover CMS validators.
Loading states cover decode time for large TIFFs; validation toasts explain oversize or unsupported inputs. Preview updates use requestAnimationFrame scheduling, and a small “Updating…” chip appears when recomputation is in flight so you know the slider input was received. Everything stays client-side, including the mask compositing math, which uses standard Canvas globalCompositeOperation paths for predictable alpha behavior.
Adjustable radius with perceptual guidance
Low single-digit values gently suppress JPEG micro-texture; mid teens through thirties read as strong defocus on web-sized frames; values toward fifty are dramatic and may reveal edge clipping from the Canvas filter pipeline. If halos appear at extreme radii, reduce the value or downscale in the Image Resizer before blurring.
Mask fidelity and brush-style freehand
Freehand mode strokes a round-capped polyline in image space so jagged mouse paths still produce a continuous mask. Dense sampling occurs on pointer move; very fast drags may undersample, so move smoothly across sensitive regions. Rectangles snap to image bounds on commit so partial off-canvas drags do not corrupt compositing.
Export modes and format fallbacks
Matching original tries to preserve JPEG versus PNG intent; TIFF and BMP masters fall back to PNG for reliability. Choose explicit JPEG when optimizing for email attachments, or PNG when you need lossless repeats in a design tool.
Technical details
Classical discrete Gaussian blur convolves each channel with a separable kernel: the two-dimensional Gaussian is the outer product of two one-dimensional Gaussians, so implementations can blur horizontally then vertically for fewer operations than a naive two-dimensional sum. The standard deviation sigma controls kernel width; many editors expose radius as a UI proxy proportional to sigma. In browsers, CanvasRenderingContext2D’s filter string blur() applies a Gaussian-style smooth filter in user space; exact kernel details are engine-dependent but visually align with designer expectations for “Gaussian blur.”
SynthQuery draws your image into a working canvas at capped resolution, clones a blurred copy via ctx.filter, then composites with clip rectangles or alpha masks. Inverse mode layers the sharp original on top of the blurred buffer inside the mask. Alpha channels from PNG sources are preserved through drawImage; fully transparent regions remain transparent where the compositing algebra allows. This approach favors speed and compatibility over shipping a custom separable convolution in JavaScript, which would struggle on mobile CPUs for multi-megapixel frames. EXIF metadata is typically stripped on re-encode; retain masters when location or rights fields matter.
Sigma, radius, and visual halos
Larger radii increase support width, which can pull bright sky pixels across hard edges and create mild halos—common to many real-time blur pipelines. Mitigate by masking tighter, lowering radius, or preprocessing edges in a dedicated editor.
Performance on large images
The four-thousand ninety-six pixel longest-edge guard prevents pathological GPU memory use in tabs. If preview updates feel sluggish, shrink the asset in the Image Resizer, blur, then upscale only if print demands it.
Use cases
Privacy-first sharing remains the top motivator: blur faces, house numbers, ID edges, or license plates inside a rectangle when you need a defensible redaction pass before posting to social channels or support tickets. Creative teams layer heavily blurred plates behind hero copy so headlines stay readable without competing high-frequency texture. Portrait-style background blur simulates shallow depth of field when your phone capture kept everything sharp—draw a loose freehand mask around the subject, enable inverse mode, and raise radius until the environment separates.
Product stylists sometimes soften reflections or busy shelving while keeping packaging sharp. Educators obscure student names on graded scans while leaving rubric text intact. Web producers prepare thumbnail backgrounds that feel cinematic without sourcing a second bokeh photograph. Accessibility-minded designers reduce visual noise behind focus indicators. Always document when imagery is altered for compliance; blur is not encryption, and determined viewers may infer information from context—pair obfuscation with cropping or solid overlays when stakes are high.
Privacy blur for faces, plates, and credentials
Rectangles excel for structured rectangles such as plates and cards. Freehand suits oval faces or diagonal badges. For legal-grade redaction, consult your counsel; this utility is engineered for practical visual obscurance in marketing and operations workflows.
Background bokeh and depth-of-field simulation
Inverse blur keeps the mask sharp while surroundings soften. Feathering is limited to the filter’s natural falloff rather than photographic lens cat-eye bokeh, yet the effect reads well in thumbnails and slide decks.
Design backgrounds and text readability
Full-image blur of a busy photograph yields a calm plate for titles and CTAs. Combine with the Contrast or Brightness tools on a duplicate layer if you need tonal separation before compositing type in another application.
How SynthQuery compares
Desktop suites expose Gaussian blur with deep layer stacks, noise models, and lens blur alternatives, but they require installs and often cloud accounts for distribution. Mobile editors are fast yet sometimes sync originals to vendor servers. SynthQuery targets a middle path: precise radius control, rectangle and freehand masks, inverse background blur, and a draggable comparison strip without uploading the bitmap—ideal for locked-down laptops and quick redaction passes. The table below contrasts practical considerations without naming specific third-party apps. When you need complementary local contrast, visit the Photo Sharpener; for tonal work, pair with Gamma or Brightness routes linked below. Additional specialty effects remain discoverable from https://synthquery.com/tools as the catalog grows.
Aspect
SynthQuery
Typical alternatives
Where processing runs
Canvas filter and compositing inside the browser tab; no SynthQuery server receives your image bytes for this blur.
Some mobile and cloud editors upload to remote GPUs—verify data-processing terms before importing sensitive work.
Masking workflows
Rectangle drag, freehand stroke mask, and one-click inverse background blur with clear scope toggles.
Full editors offer pen tools and AI segmentation but often exceed the setup time of a single-purpose web task.
Cost and access
Free page load for the utility itself; works offline after assets cache, subject to browser behavior.
Creative suites excel for layered comps but carry licensing and update overhead.
Depth versus scope
Focused on Gaussian-class blur with export; not a replacement for RAW lens blur or 3D depth maps.
Node-based compositors remain essential for motion vectors, z-depth, and calibrated color pipelines.
How to use this tool effectively
Follow these steps when you want predictable selective or global blur without reopening a heavy editor.
Step 1: Upload your image
Use drag and drop or Browse. Accepted types include JPG, PNG, WebP, BMP, and TIFF within the on-page megabyte guardrail. Wait for the loading row—large TIFF decodes may take a few seconds.
Step 2: Choose blur scope
Pick Full image for global softening. Pick Blur selected area to soften only inside your mask. Pick Blur background (inverse) to keep the mask sharp while surroundings soften—portrait-style separation.
Step 3: Pick rectangle or freehand (area modes only)
Rectangle suits plates and windows; freehand suits organic shapes. Switching shapes clears the other geometry to avoid conflicting masks. Use Clear selection if you need a do-over.
Step 4: Draw the selection on the workspace
Click-drag to define a rectangle, or draw a continuous stroke in freehand mode. The overlay shows your geometry in display space while compositing uses scaled image coordinates. Ensure freehand paths include enough points; very short strokes show a hint to draw longer or switch modes.
Step 5: Adjust blur radius
Move the zero-to-fifty pixel slider while watching the preview chip and comparison strip. Zero returns an effectively unfiltered composite path; high values increase softness and may increase render time.
Step 6: Compare with the draggable divider
Drag the vertical handle or use keyboard arrows to reveal original versus result. Confirm edges around masks and verify privacy-sensitive regions are adequately obscured.
Step 7: Download in your target format
Choose match original, explicit JPEG, or PNG, then Download. BMP/TIFF sources map to PNG when matching. Archive the untouched master separately for future edits.
Limitations and best practices
Animated GIF sequences, RAW sensor files, and HDR floating-point sources should be rasterized to eight-bit sRGB elsewhere first. This page processes one frame at a time. Gaussian blur obscures but does not cryptographically remove information—combine with cropping, solid fills, or formal redaction tooling when policies demand. For brand-critical color, validate exports on calibrated hardware. Mention AI-assisted edits where platform rules require transparency. Chain into SynthQuery text tools when captions accompany imagery.
Browse every capability—including future tilt-shift, pixelate, noise, vignette, and emboss routes as they go live alongside existing imaging utilities.
Frequently asked questions
Start low (roughly three to eight pixels) on web-resolution portraits to obscure identifying detail while leaving compositional cues; increase until fine skin texture and eye detail dissolve. For full-frame backgrounds behind text, teens through low thirties often read as clearly soft without eating label edges. Always judge on the actual display size viewers will see: thumbnails punish heavy blur less than fullscreen hero images. Use the comparison slider to ensure you are not accidentally revealing sharp pixels outside the mask in inverse mode.
Gaussian-style filters scale with pixel count and effective kernel support. Even with a four-thousand ninety-six pixel longest-edge cap, multi-megapixel buffers stress lower-power laptops. Close other heavy tabs, reduce browser zoom, or pre-shrink in the Image Resizer. The “Updating…” chip signals an in-flight composite; repeated slider tweaks queue the latest frame so you do not need to click repeatedly.
Rectangles are fastest for structured obscuration: license plates, monitors, documents. Freehand fits organic shapes—faces, handbags, logos at odd angles—without forcing you to overshoot corners. If your stroke is too short, the tool asks for a longer path so the mask encoder receives enough samples. Switch modes with Clear selection whenever you change strategies mid-session.
No. Once high frequencies are removed, they cannot be faithfully recovered from a single flattened export—sharpening tools infer edges but cannot restore true texture. Always keep an unedited master. If you might need the original detail later, store it outside the compressed export you share publicly.
This utility is not legal advice. Visual blur reduces casual recognition risk but is not equivalent to certified redaction or encryption. Regulated workflows may require dedicated redaction software, access logs, and policy review. Consult qualified counsel for jurisdictional requirements before relying on any browser tool for compliance-sensitive content.
Probably not pixel-for-pixel. Desktop apps may use different radii semantics, linear versus gamma-encoded working spaces, or GPU paths. SynthQuery’s implementation follows browser Canvas filter behavior for broad compatibility. For creative comps that must match a PSD exactly, replicate settings by eye using the comparison slider rather than expecting identical numeric transfers.
The pipeline draws your decoded image into a canvas that preserves alpha where the compositing operations allow. Fully transparent pixels generally stay transparent, but partial transparency may interact visually with blur as the filter samples neighboring RGBA values. Test exports on checkerboard backgrounds in your design tool if alpha fidelity is critical.
For this page, no: decoding, blur, mask compositing, preview, and export occur locally via Canvas. Normal site analytics or font loads may still request network resources, but the bitmap adjustment itself does not get sent to SynthQuery servers. If you require air-gapped assurance, follow your IT playbook for offline browser profiles after caching assets.
Inverse blur keeps the masked region untouched from this operation; if you later sharpen globally in another app, the background may regain some bite. A common pattern is blur here, export PNG, then apply sharpening only to the subject layer in a layered editor. SynthQuery’s Photo Sharpener can target detail when you return a flattened asset for web.
SynthQuery expands the imaging catalog over time. Bookmark https://synthquery.com/tools and the /free-tools hub for the authoritative list. Today you can pair this blur with sharpness, tone, color, and resizing utilities linked from the footer—each follows the same client-side philosophy where noted.