码迷,mamicode.com
首页 > 移动开发 > 详细

Android 读取本地(SD卡)图片

时间:2015-03-31 11:04:41      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

  1. private Bitmap getDiskBitmap(String pathString)  

  2. {  

  3.     Bitmap bitmap = null;  

  4.     try  

  5.     {  

  6.         File file = new File(pathString);  

  7.         if(file.exists())  

  8.         {  

  9.             bitmap = BitmapFactory.decodeFile(pathString);  

  10.         }  

  11.     } catch (Exception e)  

  12.     {  

  13.         // TODO: handle exception  

  14.     }  

  15.       

  16.       

  17.     return bitmap;  

  18. }  

该方法实现了从本地路径读取一张图片, 可以是jpg、bmp、png等多种格式。

pathString 是本地图片路径   如: "mnt/sdcard/1.jpg"

 

File file = new File(pathString);

if(file.exists())

{bitmap = BitmapFactory.decodeFile(pathString);}

 

读取到本地文件后, 先判断一下是否存在该文件。

BitmapFactory.decodeFile(pathString);

对本地文件进行解码, 可以是多种图片格式。 返回BITMAP对象

Android 读取本地(SD卡)图片

标签:

原文地址:http://my.oschina.net/airship/blog/393868

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!