drawable保存的sd卡

今天有个在群里讨论这个问题。其实我第一次看到这个问题。但是我一眼就觉得应该是分开两个问题:
1.sd文件的读写。当然是io了。以及获取sd的api
2.drawable这个东西怎么写到流里呢。
百度了一下,大致如下:
将drawable转化成bitmap
public Bitmap drawableToBitmap(Drawable drawable) {  
       
        Bitmap bitmap = Bitmap  
                        .createBitmap(  
                                        drawable.getIntrinsicWidth(),  
                                        drawable.getIntrinsicHeight(),  
                                        drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888  
                                                        : Bitmap.Config.RGB_565);  
        Canvas canvas = new Canvas(bitmap);   
        drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());  
        drawable.draw(canvas);  
        return bitmap;  
    } 
//将bitmap保存到file
public void saveMyBitmap(Bitmap bm,String bitName) throws IOException {
        File f = new File("/sdcard/Note/" + bitName + ".png");
        f.createNewFile();
        FileOutputStream fOut = null;
        try {
                fOut = new FileOutputStream(f);
        } catch (FileNotFoundException e) {
                e.printStackTrace();
        }
        bm.compress(Bitmap.CompressFormat.PNG, 100, fOut);
        try {
                fOut.flush();
        } catch (IOException e) {
                e.printStackTrace();
        }
        try {
                fOut.close();
        } catch (IOException e) {
                e.printStackTrace();
        }
}
。。。有抄袭之嫌啊。哈。留作纪念。保存一下。。

原文地址:http://www.cmd100.com/bbs/home-space-uid-2377-do-blog-id-687.html

你可能感兴趣的:(drawable保存的sd卡)