Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SemonCat/11251026 to your computer and use it in GitHub Desktop.
Save SemonCat/11251026 to your computer and use it in GitHub Desktop.
public static class ScaleToFitWidhtHeigthTransform implements Transformation {
private int mSize;
private boolean isHeightScale;
public ScaleToFitWidhtHeigthTransform(int size, boolean isHeightScale){
mSize =size;
this.isHeightScale = isHeightScale;
}
@Override
public Bitmap transform(Bitmap source) {
float scale;
int newSize;
Bitmap scaleBitmap;
if(isHeightScale){
scale = (float) mSize / source.getHeight();
newSize = Math.round(source.getWidth() * scale);
scaleBitmap= Bitmap.createScaledBitmap(source, newSize, mSize, true);
}else{
scale = (float) mSize / source.getWidth();
newSize = Math.round(source.getHeight() * scale);
scaleBitmap = Bitmap.createScaledBitmap(source, mSize,newSize, true);
}
if (scaleBitmap != source) {
source.recycle();
}
return scaleBitmap;
}
@Override
public String key() {
return new StringBuilder("scaleRespectRatio")
.append(mSize)
.append(isHeightScale)
.toString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment