编辑
如何更改Bitmap的尺寸
本文访问次数:0
/**
 * Shrink image.
 *
 * @param bitmap    The bitmap need to be scaled.
 * @param maxWidth  The max width.
 * @param maxHeight The max height.
 * @return new Bitmap.
 */
public static Bitmap shrinkImage(Bitmap bitmap, int maxWidth, int maxHeight) {
    int photoWidth = bitmap.getWidth();
    int photoHeight = bitmap.getHeight();
    if (photoHeight <= maxHeight && photoWidth <= maxWidth) {
        return bitmap;
    }

    float scaleWidth = ((float) maxWidth) / photoWidth;
    float scaleHeight = ((float) maxHeight) / photoHeight;
    Matrix matrix = new Matrix();
    matrix.postScale(scaleWidth, scaleHeight);
    Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0, photoWidth, photoHeight, matrix,
            false);
    bitmap.recycle();
    return resizedBitmap;
}

需要输入验证码才能留言

没有任何评论