Hyeyeon blog

[Android] ImageView로부터 Bitmap 가져오기 본문

개발/Android

[Android] ImageView로부터 Bitmap 가져오기

Hyeyeon.P 2020. 11. 24. 16:11
반응형
if(imageView.drawable is BitmapDrawable) {
  val bitmap = (imageView.drawable as BitmapDrawable).bitmap
} else {
  val drawable = binding.profileIv.drawable
  val bitmap = Bitmap.createBitmap(drawable.intrinsicWidth, drawable.intrinsicHeight, Bitmap.Config.ARGB_8888)
}
728x90
Comments