赞
踩
把view转成Bitmap也是之前用过,后来一直很少用,最近用到了,正好回顾了一下,记下来为了以后方便
直接上代码:
public Bitmap convertViewToBitmap(View view){
Bitmap bitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(),
Bitmap.Config.ARGB_8888);
//利用bitmap生成画布
Canvas canvas = new Canvas(bitmap);
//把view中的内容绘制在画布上
view.draw(canvas);
return bitmap;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。