首页 > 学院 > 开发设计 > 正文

从路径uri加载Bitmap,缩小图片到指定大小的方法记录

2019-11-09 15:09:10
字体:
来源:转载
供稿:网友
根据uri获取实际的文件路径 @TargetApi(Build.VERSION_CODES.KITKAT) public static String getRealPathFromURI(Uri uri) { final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT; // DocumentPRovider if (isKitKat && DocumentsContract.isDocumentUri(context_, uri)) { // ExternalStorageProvider if (isExternalStorageDocument(uri)) { final String docId = DocumentsContract.getDocumentId(uri); final String[] split = docId.split(":"); final String type = split[0];// if ("primary".equalsIgnoreCase(type)) { return Environment.getExternalStorageDirectory() + "/" + split[1];// } } // DownloadsProvider else if (isDownloadsDocument(uri)) { final String id = DocumentsContract.getDocumentId(uri); final Uri contentUri = ContentUris.withAppendedId( Uri.parse("content://downloads/public_downloads"), Long.valueOf(id)); return getDataColumn(context_, contentUri, null, null); } // MediaProvider else if (isMediaDocument(uri)) { final String docId = DocumentsContract.getDocumentId(uri); final String[] split = docId.split(":"); final String type = split[0]; Uri contentUri = null; if ("image".equals(type)) { contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI; } else if ("video".equals(type)) { contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI; } else if ("audio".equals(type)) { contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI; } final String selection = "_id=?"; final String[] selectionArgs = new String[]{split[1]}; return getDataColumn(context_, contentUri, selection, selectionArgs); } } // MediaStore (and general) else if ("content".equalsIgnoreCase(uri.getScheme())) { // Return the remote address if (isGooglePhotosUri(uri)) return uri.getLastPathSegment(); return getDataColumn(context_, uri, null, null); } // File else if ("file".equalsIgnoreCase(uri.getScheme())) { return uri.getPath(); } return ""; }加载时第一次缩放主要是为了缩小图片,节约加载内存 public Bitmap resizeImage1(String path,int dstWidth, int dstHeight) { BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true;//不加载bitmap到内存中 BitmapFactory.decodeFile(path, options); int srcWidth = options.outWidth; int srcHeight = options.outHeight; options.inDither = false; options.inPreferredConfig = Bitmap.Config.RGB_565; options.inSampleSize = 1; int inSampleSize = 1; if (srcWidth != 0 && srcHeight != 0 && dstWidth != 0 && dstHeight != 0) { if (srcHeight > dstHeight || srcWidth > dstWidth) { if (srcWidth > srcHeight) { inSampleSize = Math.round((float) srcHeight / (float) dstHeight); } else { inSampleSize = Math.round((float) srcWidth / (float) dstWidth); } }// inSampleSize的值只有为2的指数幂时才有效如1,2,4,6,这里宁愿多压缩一点节约内存所以加3 options.inSampleSize = inSampleSize + 3; L.d("bitmap:111sampleSize =%s ,srcWidth=%s,srcHeight=%s,dstWidth=%s,dstHeight=%s", options.inSampleSize, srcWidth, srcHeight, dstWidth, dstHeight); } options.inJustDecodeBounds = false; return BitmapFactory.decodeFile(path, options); }第二次缩放,把图片尺寸缩放到指定大小 public Bitmap resizeImage2(Bitmap bitmap, int w, int h) { Bitmap BitmapOrg = bitmap; int width = BitmapOrg.getWidth(); int height = BitmapOrg.getHeight(); int newWidth = w; int newHeight = h; float scaleWidth = ((float) newWidth) / width; float scaleHeight = ((float) newHeight) / height; Matrix matrix = new Matrix(); matrix.postScale(scaleWidth, scaleHeight); // if you want to rotate the Bitmap // matrix.postRotate(45); Bitmap resizedBitmap = Bitmap.createBitmap(BitmapOrg, 0, 0, width, height, matrix, true); return resizedBitmap; }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表