Android 讲指定区域(View)保存成图片(手写签名并保存为图片)

核心代码如下:

经自己测试代码通过

链接如下:https://download.csdn.net/download/u013075460/12311242

public  class SaveViewToPictureHelper {
    /**
     * 把view保存成图片
     */
    public  void save(View mView, Context mContext) {
        // 获取图片某布局
        mView.setDrawingCacheEnabled(true);
        mView.buildDrawingCache();
        new Handler().postDelayed(new Runnable() {

            @Override
            public void run() {
                // 要在运行在子线程中
                Bitmap bmp = mView.getDrawingCache(); // 获取图片
                savePicture(mContext,bmp, "pic" + System.currentTimeMillis() / 1000 +".png");// 保存图片
                mView.destroyDrawingCache(); // 保存过后释放资源
            }
        }, 300);
    }

    /**
     * 把Bitmap保存成本地图片
     */
    public void savePicture(Context context,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.PNG, 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、付费专栏及课程。

余额充值