반응형
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 =
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;
}
bm = BitmapFactory.decodeStream(bis);
bis.close();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (httpclient != null) {
httpclient.close();
}
}
return bm;
}
반응형
'Tech develop > Android' 카테고리의 다른 글
[Android/안드로이드] .9.png(9patch) 사용 법 (0) | 2014.08.10 |
---|---|
[Android/안드로이드]ExpandableListView 그룹 닫기 메소드 (0) | 2014.08.10 |
[Android/안드로이드]java.lang.ClassCastException: android.widget.LinearLayout 에러 (0) | 2014.08.10 |
[Android/안드로이드]Internet 연결여부 확인 (0) | 2014.08.10 |
[Android/안드로이드]Keyboard 보이기/숨기기 구현 (0) | 2014.08.10 |