Skip to content

BitmapExtensions

Birju Vachhani edited this page Sep 26, 2019 · 1 revision

Examples

Get View as Bitmap

someView.asBitmap()

Get Bitmap of View's Background only

someView.backgroundAsBitmap()

Get Bitmap of View's foreground only

someView.foregroundAsBitmap() // require Android Marsh-mellow or higher

Get Image Bitmap from ImageView

imageView.imageAsBitmap()

Use CopyPixels api to get Bitmap of a View.

someView.copyPixels() // requires Android Oreo or higher

For more information, look at the BitmapExtensions.kt file.