国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

從路徑uri加載Bitmap,縮小圖片到指定大小的方法記錄

2019-11-09 14:10:34
字體:
來源:轉載
供稿:網友
根據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; }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 富顺县| 琼海市| 象州县| 甘洛县| 永川市| 扶余县| 横山县| 乌拉特中旗| 洱源县| 左云县| 涟水县| 天祝| 通河县| 綦江县| 延边| 开封市| 宝兴县| 甘孜县| 沁源县| 东丰县| 镇远县| 江门市| 越西县| 通州市| 鄂尔多斯市| 伊金霍洛旗| 霍城县| 万宁市| 霍林郭勒市| 甘孜县| 洛扎县| 重庆市| 龙游县| 无锡市| 罗平县| 湘阴县| 鄢陵县| 云和县| 宜良县| 中宁县| 平原县|