QmBlurView’sDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/QmDeve/QmBlurView-Docs/llms.txt
Use this file to discover all available pages before exploring further.
transform module integrates directly with Glide to apply real-time Gaussian blur effects to images as they are loaded. By passing a BlurTransformation instance into Glide’s RequestOptions, you can blur any image — remote or local — with full control over blur radius and rounded corners, without any additional post-processing step.
Import
Add the following import statements to your Java class:Usage Example
Pass aBlurTransformation instance via RequestOptions.transform() when loading an image with Glide. You can chain it with other transforms such as CenterCrop:
Constructor Reference
| Constructor | Description |
|---|---|
BlurTransformation() | Default blur radius 25f, no rounded corners |
BlurTransformation(float blurRadius) | Custom blur radius, no rounded corners |
BlurTransformation(float blurRadius, float roundedCorners) | Custom blur radius and rounded corners |