Android Picasso sample code using Gaussian blur
As we all know, Picasso is a picture loading library often used in Android development. The general usage is as follows:
There are also uses that do not use caching:
A series of usages are not listed one by one. Some time ago, I met a need to use Gaussian blur. At first, I found some processing code, but later I found that Picasso can directly process when loading pictures, so I learned this usage. Like other usages, various points, this time transform ():
Gaussian blur is realized by transform, and the key code is the implementation of blurtransformation:
After creating this class, use yes in Picasso and set it as a parameter to transform.
The above is the whole content of this article. I hope it will be helpful to your study, and I hope you can support programming tips.