本文主要是介绍Android调整Bitmap图片大小,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#Android调整Bitmap图片大小
/*** 调整图片大小* * @param bitmap* 源* @param dst_w* 输出宽度* @param dst_h* 输出高度* @return*/public static Bitmap imageScale(Bitmap bitmap, int dst_w, int dst_h) {int src_w = bitmap.getWidth();int src_h = bitmap.getHeight();float scale_w = ((float) dst_w) / src_w;float scale_h = ((float) dst_h) / src_h;Matrix matrix = new Matrix();matrix.postScale(scale_w, scale_h);Bitmap dstbmp = Bitmap.createBitmap(bitmap, 0, 0, src_w, src_h, matrix,true);return dstbmp;}
这篇关于Android调整Bitmap图片大小的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!