android 读取本地或网络图片,转换为Bitmap 并保存本地中

在做android项目时,我们经常需要从本地或者网络读取图片,并转换为Bitmap图片,以便使用,下面是读取本地图片并转换的方法 


这个是从本体获取 , 记住要导入访问本体本件的权限

BitmapFactory.Options options=new BitmapFactory.Options();
options.inSampleSize=(int)7.5; /*图片长宽方向缩小倍数*/
options.inJustDecodeBounds=false;
	
File file = new File("/storage/emulated/0/CheckAPP/CheckSign.jpg");
Uri uri = Uri.fromFile(file);
Bitmap map=BitmapFactory.decodeStream(getContentResolver().openInputStream(uri), null, options);
			
 

     这个是从网络上获取的图片, 需要导入上网的权限

              URL url = new URL("http://d.hiphotos.baidu.com/zhidao/pic/item/962bd40735fae6cd0009f9410eb30f2442a70f54.jpg&#
  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值