/**
* 获取图片类格式
*
* @param filePath
* ”image/png”、”image/jpeg”、”image/gif”
* @return
*/
public static String getLocaPathMimeType(String filePath) {
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(filePath, options);
return options.outMimeType.replace("image/", ".");
} catch (Exception e) {
return JPG;
}
}
上面是针对本地文件,针对于网络图片的办法就是,将图片保存到本地,监听图片下载完成后,在传入上面方法获取mimeType,在根据需求展示
网友评论