bitmap

来源:互联网 发布:星宇免费记账软件 编辑:程序博客网 时间:2024/05/17 03:21
/** * 保存Bitmap到sd卡 */public static void saveBitmap(String bitmapName, Bitmap mBitmap) {try {String path = Environment.getExternalStorageDirectory() + "/screen_shot";File dirFile = new File(path);if(!dirFile.exists()) {dirFile.mkdirs();}File bitmapFile = new File(path, bitmapName);bitmapFile.createNewFile();FileOutputStream bos = new FileOutputStream(bitmapFile);mBitmap.compress(Bitmap.CompressFormat.PNG, 90, bos);  bos.flush();bos.close();} catch (IOException  e) {// TODO Auto-generated catch blocke.printStackTrace();} }


原创粉丝点击