Notice
Recent Posts
Recent Comments
Link
투케이2K
269. (kotlin/코틀린) [유틸 파일] drawableToBitmap : drawable 이미지를 비트맵 (bitmap) 으로 변환 실시 본문
Kotlin
269. (kotlin/코틀린) [유틸 파일] drawableToBitmap : drawable 이미지를 비트맵 (bitmap) 으로 변환 실시
투케이2K 2023. 4. 15. 18:39[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// ----------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [RETURN] drawableToBitmap : drawable 이미지를 비트맵으로 변환 실시
// ----------------------------------------------------------------------------------
fun drawableToBitmap(mContext: Context, drawable: Int): Bitmap? {
/**
* // -----------------------------------------
* [drawableToBitmap 메소드 설명]
* // -----------------------------------------
* 1. drawable 이미지를 비트맵으로 변환 실시
* // -----------------------------------------
* 2. 호출 방식 :
*
* C_App.drawableToBitmap(A_Intro@this, R.drawable.sample)
*
* // -----------------------------------------
* 3. 리턴 데이터 : 비트맵 데이터
* // -----------------------------------------
* */
// [리턴 변수 선언]
var returnData: Bitmap? = null
// [로직 처리 실시]
try {
returnData = BitmapFactory.decodeResource(mContext.getResources(), drawable)
} catch (e: Exception) {
e.printStackTrace()
}
// [로그 출력 실시]
//*
S_Log.ltd("================================================")
S_Log.cnt("[" + C_Util.ACTIVITY_NAME + " >> " + C_Util.getNowMethod(1) + " :: drawable 이미지를 비트맵으로 변환 실시]")
S_Log.cnt("-----------------------------------------")
S_Log.cnt("[RETURN :: " + returnData.toString() + "]")
S_Log.lbd("================================================")
// */
// [리턴 반환 실시]
return returnData
}
반응형
'Kotlin' 카테고리의 다른 글
Comments