當前位置:首頁 » 安卓系統 » android保存bitmap

android保存bitmap

發布時間: 2024-12-29 04:13:11

⑴ android中Bitmap存為一張圖片

可以用Bitmap.compress函數來把Bitmap對象保存成PNG或JPG文件,然後可以用BitmapFactory把文件中的數據讀進來再生成Bitmap對象。
保存的代碼大概類似於這樣:
try {
FileOutputStream out = new FileOutputStream(filename);
bmp.compress(Bitmap.CompressFormat.PNG, 90, out);
} catch (Exception e) {
e.printStackTrace();
}
具體的可以去查Bitmap和BitmapFactory的幫助文檔。

⑵ android通過HttpClient在網頁中讀取圖片,保存到手機裡面

通過url獲取圖片流,將流轉換成bitmap再將bitmap存放到手機

InputStreambitmapIs=HttpUtils.getStreamFromURL(imageURL);

Bitmapbitmap=BitmapFactory.decodeStream(bitmapIs);

Stringpath="/mnt/sdcard/image/";//這個就是你存放的路徑了。

FilebitmapFile=newFile(path);

FileOutputStreamfos=null;

if(!bitmapFile.exists()){

try{

bitmapFile.createNewFile();

fos=newFileOutputStream(bitmapFile);

bitmap.compress(Bitmap.CompressFormat.PNG,100,fos);

}catch(IOExceptione){

e.printStackTrace();

}finally{

try{

if(fos!=null){

fos.close();

}

}catch(IOExceptione){

e.printStackTrace();

}

}

}

java" wealth="0" />
熱點內容
分團演算法 發布:2024-12-29 19:31:26 瀏覽:623
編程貓大事件 發布:2024-12-29 19:13:53 瀏覽:181
wpa2密碼是什麼 發布:2024-12-29 19:01:10 瀏覽:815
積分商城系統源碼 發布:2024-12-29 18:59:31 瀏覽:963
拖拽建站系統源碼 發布:2024-12-29 18:51:58 瀏覽:262
初中數學演算法 發布:2024-12-29 18:50:22 瀏覽:450
電腦遠程映射伺服器 發布:2024-12-29 18:50:21 瀏覽:956
紐西蘭訪問學者 發布:2024-12-29 18:40:39 瀏覽:261
建立100個文件夾 發布:2024-12-29 18:33:11 瀏覽:330
小米手機怎麼投屏到安卓車機 發布:2024-12-29 18:32:25 瀏覽:373