private Bitmap decodeFile(File f){   Bitmap b = null;   try {     //Decode image size     BitmapFactory.Options o = new BitmapFactory.Options();     o.inJustDecodeBounds = true;     FileInputStream fis = new FileInputStream(f);     BitmapFactory.decodeStream(fis, null, o);     fis.close();     int scale = 1;     if (o.outHeight > IMAGE_MAX_SIZE || o.outWidth > IMAGE_MAX_SIZE) {       scale = Math.pow(2, (int) Math.round(Math.log(IMAGE_MAX_SIZE / (double) Math.max(o.outHeight, o.outWidth)) / Math.log(0.5)));     }     //Decode with inSampleSize     BitmapFactory.Options o2 = new BitmapFactory.Options();     o2.inSampleSize = scale;     fis = new FileInputStream(f);     b = BitmapFactory.decodeStream(fis, null, o2);     fis.close();   } catch (FileNotFoundException e) {   }   return b; } 

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android(安卓)WebView与JavaScript交互详
  2. Android(安卓)用户界面---定制组件(Custom
  3. Android(安卓)阿拉伯语言适配
  4. [Android] The connection to adb is dow
  5. Android网络请求库——android-async-htt
  6. FFMPEG移植到Android(ubuntu环境下)
  7. Unity功能记录(五)------ Android(安卓)stu
  8. Content Prodvider 类----实例:获取通讯录
  9. Google ZXing系列讲解(三)——ZXing 目录
  10. Android(安卓)Studio 中自带Android(安卓