android bitmap保存本地图片,Android保存View转Bitmap并到本地图库实时更新

参考张大神的http://stormzhang.github.io/android/2014/07/24/android-save-image-to-gallery/

最开始我想的是截屏保存更方便,但很丑,于是查了下资料。不到30分钟就弄出来了,很顺利,还是感谢那些开源分享的大神们

遇到没做过的,先思考,再动手找解决办法。哈哈。下面是我项目中的的代码,可以参考

private void save(final LinearLayout mView){

// 获取图片某布局

mView.setDrawingCacheEnabled(true);

mView.buildDrawingCache();

mHandler.postDelayed(new Runnable() {

@Override

public void run() {

// 要在运行在子线程中

bmp = mView.getDrawingCache(); // 获取图片

savePicture(bmp, "zzp_sale.png");// 保存图片

mView.destroyDrawingCache(); // 保存过后释放资源

}

},100);

}

public void savePicture(Bitmap bm, String fileName) {

Log.i("xing", "savePicture: ------------------------");

if (null == bm) {

Log.i("xing", "savePicture: ------------------图片为空------");

return;

}

//建立指定文件夹

File foder = new File(Environment.getExternalStorageDirectory() , "zzp_sale");

if (!foder.exists()) {

foder.mkdirs();

}

File myCaptureFile = new File(foder, fileName);

try {

if (!myCaptureFile.exists()) {

myCaptureFile.createNewFile();

}

BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(myCaptureFile));

//压缩保存到本地

bm.compress(Bitmap.CompressFormat.JPEG, 90, bos);

bos.flush();

bos.close();

} catch (IOException e) {

e.printStackTrace();

}

// 把文件插入到系统图库

try {

MediaStore.Images.Media.insertImage(context.getContentResolver(),

myCaptureFile.getAbsolutePath(), fileName, null);

} catch (FileNotFoundException e) {

e.printStackTrace();

}

// 最后通知图库更新

context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://" + myCaptureFile.getPath())));

Toast.makeText(context, "保存成功!", Toast.LENGTH_SHORT).show();

}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值