Android
A subclass of ImageView that scales the image as 'BottomCrop' The source image will be scaled to match the view and cropped so the bottom of the image remains fixed at the bottom of the view. The top will crop according to the view height.
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
/** | |
* @author Justin Poliachik | |
* | |
* This ImageView subclass allows a scale type of 'BottomCrop' | |
* The src image will be scaled to match the view and cropped | |
* so that the bottom of the image remains fixed. | |
* The top will crop according to the view height. | |
*/ | |
public class BottomCropImage extends ImageView { | |
public BottomCropImage(Context context) { | |
super(context); | |
setup(); | |
} | |
public BottomCropImage(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
setup(); | |
} | |
public BottomCropImage(Context context, AttributeSet attrs, | |
int defStyle) { | |
super(context, attrs, defStyle); | |
setup(); | |
} | |
private void setup() { | |
setScaleType(ScaleType.MATRIX); | |
} | |
@Override | |
protected boolean setFrame(int l, int t, int r, int b) { | |
Matrix matrix = getImageMatrix(); | |
float scale; | |
int viewWidth = getWidth() - getPaddingLeft() - getPaddingRight(); | |
int viewHeight = getHeight() - getPaddingTop() - getPaddingBottom(); | |
int drawableWidth = getDrawable().getIntrinsicWidth(); | |
int drawableHeight = getDrawable().getIntrinsicHeight(); | |
//Get the scale | |
if (drawableWidth * viewHeight > drawableHeight * viewWidth) { | |
scale = (float) viewHeight / (float) drawableHeight; | |
} else { | |
scale = (float) viewWidth / (float) drawableWidth; | |
} | |
//Define the rect to take image portion from | |
RectF drawableRect = new RectF(0, drawableHeight - (viewHeight / scale), drawableWidth, drawableHeight); | |
RectF viewRect = new RectF(0, 0, viewWidth, viewHeight); | |
matrix.setRectToRect(drawableRect, viewRect, Matrix.ScaleToFit.FILL); | |
setImageMatrix(matrix); | |
return super.setFrame(l, t, r, b); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment