-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
72 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
app/src/main/java/com/chad/baserecyclerviewadapterhelper/transform/GlideCircleTransform.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package com.chad.baserecyclerviewadapterhelper.transform; | ||
|
||
import android.content.Context; | ||
import android.graphics.Bitmap; | ||
import android.graphics.BitmapShader; | ||
import android.graphics.Canvas; | ||
import android.graphics.Paint; | ||
|
||
import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool; | ||
import com.bumptech.glide.load.resource.bitmap.BitmapTransformation; | ||
|
||
/** | ||
* Created by tb on 16/5/3. | ||
*/ | ||
public class GlideCircleTransform extends BitmapTransformation { | ||
|
||
public GlideCircleTransform(Context context) { | ||
super(context); | ||
} | ||
|
||
@Override | ||
protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) { | ||
return circleCrop(pool, toTransform); | ||
} | ||
|
||
private static Bitmap circleCrop(BitmapPool pool, Bitmap source) { | ||
if (source == null) return null; | ||
|
||
int size = Math.min(source.getWidth(), source.getHeight()); | ||
int x = (source.getWidth() - size) / 2; | ||
int y = (source.getHeight() - size) / 2; | ||
|
||
Bitmap squared = Bitmap.createBitmap(source, x, y, size, size); | ||
|
||
Bitmap result = pool.get(size, size, Bitmap.Config.ARGB_8888); | ||
if (result == null) { | ||
result = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); | ||
} | ||
|
||
Canvas canvas = new Canvas(result); | ||
Paint paint = new Paint(); | ||
paint.setShader(new BitmapShader(squared, BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP)); | ||
paint.setAntiAlias(true); | ||
float r = size / 2f; | ||
canvas.drawCircle(r, r, r, paint); | ||
return result; | ||
} | ||
|
||
@Override | ||
public String getId() { | ||
return getClass().getName(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters