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)