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 Picasso to apply real-time Gaussian blur effects to images as they are loaded. By passing a BlurTransformation instance into Picasso’s .transform() call, 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 .transform() when loading an image with Picasso:
Constructor Reference
| Constructor | Description |
|---|---|
BlurTransformation() | Default blur radius 25f, rounded corners 0 |
BlurTransformation(float blurRadius) | Custom blur radius, no rounded corners |
BlurTransformation(float blurRadius, float roundedCorners) | Custom blur radius and rounded corners |
The Picasso and Glide
BlurTransformation classes are in different packages — com.qmdeve.blurview.transform.picasso vs com.qmdeve.blurview.transform.glide — make sure to import the correct one.