v79
04/20/2021, 8:23 PMBitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
But there is no createBitmap function available. Nor pretty much any of the Android Bitmap functions.Kirill Grouchnikov
04/20/2021, 8:40 PMImageBitmap, 2) call asDesktopBitmap on it that returns the Skija's Bitmap class, and then 3) call Bitmap.installPixelsolonho
04/21/2021, 5:48 AM