Bitmap Graphics
open class BitmapGraphics(val width: Int, val height: Int, val image: Bitmap = Bitmap.createBitmap(width, height, ARGB_8888)) : AndroidDrawingInterface(source)
An AndroidDrawingInterface that uses a Canvas (here referred to as "Classic Canvas") to draw into a Bitmap.
For a modern Canvas, see DrawScopeGraphics which uses Jetpack Compose.