歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android 圖像系列: 將本地圖片加載到Drawable

Android 圖像系列: 將本地圖片加載到Drawable

  1. /** 
  2.      * 將文件生成位圖 
  3.      * @param path 
  4.      * @return 
  5.      * @throws IOException 
  6.      */  
  7.     public BitmapDrawable getImageDrawable(String path)  
  8.         throws IOException  
  9.     {  
  10.         //打開文件   
  11.         File file = new File(path);  
  12.         if(!file.exists())  
  13.         {  
  14.             return null;  
  15.         }  
  16.           
  17.         ByteArrayOutputStream outStream = new ByteArrayOutputStream();  
  18.         byte[] bt = new byte[BUFFER_SIZE];  
  19.           
  20.         //得到文件的輸入流   
  21.         InputStream in = new FileInputStream(file);  
  22.           
  23.         //將文件讀出到輸出流中   
  24.         int readLength = in.read(bt);  
  25.         while (readLength != -1) {  
  26.             outStream.write(bt, 0, readLength);  
  27.             readLength = in.read(bt);  
  28.         }  
  29.           
  30.         //轉換成byte 後 再格式化成位圖   
  31.         byte[] data = outStream.toByteArray();  
  32.         Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);// 生成位圖   
  33.         BitmapDrawable bd = new BitmapDrawable(bitmap);  
  34.           
  35.         return bd;  
  36.     }  
Copyright © Linux教程網 All Rights Reserved