摘要: /** * bitmap 图片缩放到指定大小 */ public static Bitmap resizeImage(Bitmap bitmap, int w, int h) { Bitmap BitmapOrg = bitmap; int width = BitmapOrg.getWidth(); ... 阅读全文
posted @ 2017-02-09 12:02 万物为铜 阅读(1554) 评论(1) 推荐(0)