android 图片压缩

图片压缩
BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = false; options.inPurgeable = true; options.inInputShareable = true; // Do not compress options.inSampleSize = 1; options.inPreferredConfig = Config.ARGB_8888; moveBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.rgb_picker, options);

 

posted @ 2015-09-23 19:21  brave-sailor  阅读(133)  评论(0编辑  收藏  举报