Created
May 19, 2021 08:16
-
-
Save Marchuck/d0de2acecf5d4de364272c5e204a1772 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun generateImage(width: Int, height: Int): Bitmap { | |
val bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888) | |
val canvas = Canvas(bitmap) | |
val paint = Paint() | |
val path = generatePath() | |
canvas.drawPath(path, paint) | |
return bitmap | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment