Android图片处理工具类(圆角,压缩)
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Android图片处理工具类(圆角,压缩)
工作中用到的图片处理工具类,简单写下来,以便备用!
public class BitmapUtils {
/**
* 图像背景圆角处理
* bitmap要处理的图片 roundPx 图片弯角的圆度一般是5到10之间
*/
public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, float roundPx) {
// 创建与原图大小一样的bitmap文件,Config.ARGB_8888根据情况可以改用其它的
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Config.ARGB_8888);
// 实例画布,绘制的bitmap将保存至output中
Canvas canvas = new Canvas(output);
final int color = 0xff424242;//写自己需要的颜色值
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
final RectF rectF = new RectF(rect);
paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(color);
canvas.drawRoundRect(rectF, roundPx, roundPx, paint);
paint.setXfermode(new
PorterDuffXfermode(android.graphics.PorterDuff.Mode.SRC_IN)); canvas.drawBitmap(bitmap, rect, rect, paint);
bitmap.recycle();
bitmap = null;
return output;
}
/**
* bitmap缩放
* width要缩放的宽度 height要缩放的高度
*/
public static Bitmap getBitmapDeflation(Bitmap bitmap, int width, int height, boolean recycle) {
if (null == bitmap) {
return null;
}
float scaleWidth = 0f;
float scaleHeight = 0f;
// 获取bitmap宽高
int bitmapWidth = bitmap.getWidth();
int bitmapHeight = bitmap.getHeight();
// 计算缩放比,图片的宽高小于指定的宽高则不缩放
if (width < bitmapWidth) {
scaleWidth = ((float) width) / bitmapWidth;
} else {
scaleWidth = 1.00f;
}
if (height < bitmapHeight) {
scaleHeight = ((float) height) / bitmapHeight; } else {
scaleHeight = 1.00f;
}
Matrix matrix = new Matrix();
matrix.postScale(scaleWidth, scaleHeight);
Bitmap newBitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmapWidth, bitmapHeight, matrix, true);
if (recycle && !bitmap.isRecycled()) {
bitmap.recycle();
}
bitmap = null;
return newBitmap;
}
/**
*
* 方法概述:进入图片的大小与质量压缩,用于区分大小图片
*/
public static Bitmap getCompressedImage(String srcPath) {
BitmapFactory.Options newOpts = new BitmapFactory.Options();
// 开始读入图片,此时把options.inJustDecodeBounds 设回true了 newOpts.inPreferredConfig = Bitmap.Config.RGB_565;
newOpts.inPurgeable = true;
newOpts.inJustDecodeBounds = true;
FileInputStream is = null;
try {
is = new FileInputStream(srcPath);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
Bitmap bitmap = BitmapFactory.decodeStream(is, null, newOpts);// 此时返回bm为空
newOpts.inJustDecodeBounds = false;
int w = newOpts.outWidth;
int h = newOpts.outHeight;
// 现在主流手机比较多是800*480分辨率,所以高和宽我们设置为
float hh = 130f;// 这里设置高度为800f
float ww = 130f;// 这里设置宽度为480f
// 缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可
int be = 1;// be=1表示不缩放
if (w > h && w > ww) {// 如果宽度大的话根据宽度固定大小缩放
be = (int) (newOpts.outWidth / ww);
} else if (w < h && h > hh) {// 如果高度高的话根据宽度固定大小缩放
be = (int) (newOpts.outHeight / hh);
}