반응형

Url에 있는 사진을 내 앱에 뿌려줄 때, Bitmap으로 변환하는 함수.

 * 주의할점. bitmap 변환 시 out of memory 주의. 

 

public static Bitmap getBitmap(String urlpath) {
        Bitmap bm = null;
        try {
         URL url = new URL(urlpath);
            URLConnection conn = url.openConnection();
            conn.connect();
            BufferedInputStream bis = 
                               new BufferedInputStream(conn.getInputStream());
            bm = BitmapFactory.decodeStream(bis);
            bis.close();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (httpclient != null) {
                httpclient.close();
            }
        }
        return bm;
    }


반응형
,