本地檔案轉 Drawable
/**
* 將本地檔案轉換為 Drawable
*/
private Drawable iconDrawable(String file)
{
if (file == null || file.isEmpty())
{
return null;
}
Drawable drawable = null;
try
{
FileInputStream fis = new FileInputStream(file);
Bitmap bitmap = BitmapFactory.decodeStream(fis);
drawable = new BitmapDrawable(getResources(), bitmap);
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
return drawable;
}
或者直接利用:Bitmap bitmap = BitmapFactory.decodeFile(file); 獲取 Bitmap,再構造出 Drawable。
說到 Bitmap,順便講一下Bitmap 改變圖片尺寸的方法:
下面例子是從 assets 目錄下讀取圖片檔案,並支援改變圖片尺寸返回 Bitmap
/**
* 將 assets 下的圖片轉換為 Bitmap
* @param fileName -- assets 下圖片檔案
* @param dst_w -- 輸出寬度(為 0 時原圖尺寸輸出)
* @param dst_h -- 輸出高度(為 0 時原圖尺寸輸出)
* @return Bitmap 圖片
* 說明:
* dst_w / dst_h 任意一值為 0 時,原圖尺寸輸出
*/
private Bitmap imageFromAssetFile(String fileName, int dst_w, int dst_h)
{
Bitmap image = null;
try
{
AssetManager am = getResources().getAssets();
InputStream is = am.open(fileName);
if (is != null)
{
image = BitmapFactory.decodeStream(is);
is.close();
}
}
catch (Exception e)
{
}
if (dst_w == 0 || dst_h == 0)
{
return image;
}
if (image == null)
{
return null;
}
// 調整圖片大小
int src_w = image.getWidth();
int src_h = image.getHeight();
float scale_w = ((float)dst_w) / src_w;
float scale_h = ((float)dst_h) / src_h;
Matrix matrix = new Matrix();
matrix.postScale(scale_w, scale_h);
return Bitmap.createBitmap(image, 0, 0, src_w, src_h, matrix, true);
}
相關文章
- WKWebView載入本地檔案WebView
- Mysql匯入本地檔案MySql
- SpringMvc本地上傳檔案SpringMVC
- SpringBoot 新增本地 jar 檔案Spring BootJAR
- jpeg,png,bmp轉換成icon,windows本地匯出icon檔案Windows
- 檔案包含漏洞(本地包含配合檔案上傳)
- GBFF檔案轉GFF檔案
- spark直接讀取本地檔案系統的檔案Spark
- IntelliJ IDEA 新增本地xsd檔案IntelliJIdea
- PDF檔案轉換為DWF檔案
- Remix本地化,載入本地合約檔案,本地連結RemixREM
- 將本地檔案傳輸到GitHubGithub
- 搜尋本地pdf檔案內容
- 讀取本地Excel檔案生成echartsExcelEcharts
- ie8上傳本地圖片檔案轉base64 並預覽地圖
- python 將 CVS檔案轉為HTML檔案PythonHTML
- 把 .xyz 檔案轉換成 .ply 檔案
- Json檔案轉換為Excel檔案!涉及讀檔案,時間戳轉化,寫文件JSONExcel時間戳
- linux採用scp命令拷貝檔案到本地,拷貝本地檔案到遠端伺服器Linux伺服器
- hdfs檔案本地許可權問題
- vue3.0 請求本地json 檔案VueJSON
- rsync同步和備份檔案到本地
- 處理Maven本地倉庫.lastUpdated檔案MavenAST
- jmeter儲存下載的檔案到本地JMeter
- 使用apt install安裝本地deb檔案APT
- Next 設定字型檔案cdn 或者本地
- 通過 hosts檔案配置本地域名
- Linux下把sra檔案轉成fastq檔案LinuxAST
- 如何將.ipynb檔案轉換為.py檔案
- Mxnet模型檔案轉換為Pb模型檔案模型
- 如何將BigWig 檔案轉化為 bed 檔案
- SAP Fiori Elements 本地專案的 annotations.xml 檔案XML
- 根據網路連線(檔案連結)下載檔案到本地
- PDF檔案轉HTML方法HTML
- 忽略特殊檔案(轉載)
- md檔案批次轉htmlHTML
- Word檔案如何轉為PDF檔案,小技能分享!
- 檢測檔案編碼,轉換檔案編碼