国产探花免费观看_亚洲丰满少妇自慰呻吟_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; }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 改则县| 乌什县| 孟村| 土默特左旗| 梧州市| 左云县| 湘潭市| 嘉义县| 鸡泽县| 泰和县| 邹城市| 永靖县| 商南县| 湖口县| 唐海县| 宜君县| 自贡市| 临邑县| 辽宁省| 高青县| 黄陵县| 五华县| 池州市| 来宾市| 喀喇| 祁连县| 大理市| 中宁县| 平利县| 迁西县| 仲巴县| 山西省| 松阳县| 博白县| 大新县| 鱼台县| 汉阴县| 隆德县| 江北区| 沐川县| 潢川县|