android viewToBitmap

나고수·2022년 7월 17일
0

1일1공부

목록 보기
56/67
fun viewToBitmap(view: View): Bitmap {
        val bitmap = Bitmap.createBitmap(600, 20, Bitmap.Config.ARGB_8888)
        val canvas = Canvas(bitmap)
        view.draw(canvas)

        return bitmap
    }
//bitmap to drawable 
val bitmapDrawable = BitmapDrawable(resources, bitmap)
profile
되고싶다

0개의 댓글