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