pxq

Results 1 issues of pxq

` public static Bitmap getDecodeAbleBitmap(String picturePath) { try { BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeFile(picturePath, options); int sampleSize = Math.min(options.outHeight, options.outWidth) / 500; if (sampleSize <= 0)...