java.lang.Object | ||
↳ | com.facebook.imagepipeline.request.BasePostprocessor | |
↳ | com.facebook.imagepipeline.postprocessors.IterativeBoxBlurPostProcessor |
A fast and memory-efficient post processor performing an iterative box blur. For details see
iterativeBoxBlur(Bitmap, int, int)
.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.facebook.imagepipeline.request.BasePostprocessor
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
IterativeBoxBlurPostProcessor(int blurRadius) | |||||||||||
IterativeBoxBlurPostProcessor(int iterations, int blurRadius) |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CacheKey |
getPostprocessorCacheKey()
The default implementation of the CacheKey for a Postprocessor is null
| ||||||||||
void |
process(Bitmap bitmap)
Clients should override this method if the post-processing can be done in place.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.facebook.imagepipeline.request.BasePostprocessor
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.facebook.imagepipeline.request.Postprocessor
|
The default implementation of the CacheKey for a Postprocessor is null
Clients should override this method if the post-processing can be done in place.
The provided bitmap is a copy of the source bitmap and the implementation is free to modify it.
bitmap | the bitmap to be used both as input and as output |
---|