fast Blur
open fun fastBlur(src: Bitmap, @FloatRange(from = 0, to = 1, fromInclusive = false ) scale: Float, @FloatRange(from = 0, to = 25, fromInclusive = false ) radius: Float): Bitmap
Content copied to clipboard
Return the blur bitmap fast.
zoom out, blur, zoom in
Return
the blur bitmap
Parameters
src
The source of bitmap.
scale
The scale(0...1).
radius
The radius(0...25).
open fun fastBlur(src: Bitmap, @FloatRange(from = 0, to = 1, fromInclusive = false ) scale: Float, @FloatRange(from = 0, to = 25, fromInclusive = false ) radius: Float, recycle: Boolean): Bitmap
Content copied to clipboard
Return the blur bitmap fast.
zoom out, blur, zoom in
Return
the blur bitmap
Parameters
src
The source of bitmap.
scale
The scale(0...1).
radius
The radius(0...25).
recycle
True to recycle the source of bitmap, false otherwise.